diff options
author | Christopher Faylor <me@cgf.cx> | 2003-09-11 00:07:28 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-09-11 00:07:28 +0000 |
commit | 704d8c321eafc33c1a8145c9c6bcb44d8827520a (patch) | |
tree | 48441bd875404b298b8809e147e24832fe36f7cd /winsup/utils | |
parent | 4a6890e76e1842230ea969f79e47b1b7a24d2218 (diff) | |
download | newlib-704d8c321eafc33c1a8145c9c6bcb44d8827520a.zip newlib-704d8c321eafc33c1a8145c9c6bcb44d8827520a.tar.gz newlib-704d8c321eafc33c1a8145c9c6bcb44d8827520a.tar.bz2 |
* Makefile.in: More fixups to adjust for the fact that mingw_getopt.o is no
longer built.
Diffstat (limited to 'winsup/utils')
-rw-r--r-- | winsup/utils/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/utils/Makefile.in | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog index bf98d79..76b7402 100644 --- a/winsup/utils/ChangeLog +++ b/winsup/utils/ChangeLog @@ -1,5 +1,10 @@ 2003-09-10 Christopher Faylor <cgf@redhat.com> + * Makefile.in: More fixups to adjust for the fact that mingw_getopt.o + is no longer built. + +2003-09-10 Christopher Faylor <cgf@redhat.com> + * Makefile.in: Remove references to getopt since it is now part of mingwex. diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index 2cfed05..a4b2046 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -92,10 +92,10 @@ all: Makefile $(PROGS) strace.exe: strace.o path.o $(MINGW_DEP_LDLIBS) ifdef VERBOSE - $(CXX) $(MINGW_CXXFLAGS) -o $@ ${wordlist 1,3,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS) + $(CXX) $(MINGW_CXXFLAGS) -o $@ ${wordlist 1,2,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS) else @echo $(CXX) -o $@ ${wordlist 1,2,$^} ${filter-out -B%, $(MINGW_CXXFLAGS) $(MINGW_LDFLAGS)};\ - $(CXX) $(MINGW_CXXFLAGS) -o $@ ${wordlist 1,3,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS) + $(CXX) $(MINGW_CXXFLAGS) -o $@ ${wordlist 1,2,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS) endif cygcheck.exe: cygcheck.o path.o dump_setup.o $(MINGW_DEP_LDLIBS) @@ -103,7 +103,7 @@ ifeq "$(libz)" "" echo '*** Building cygcheck without package content checking due to missing mingw libz.a.' endif ifdef VERBOSE - $(CXX) $(MINGW_CXXFLAGS) -o $@ ${wordlist 1,4,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS) $(libz) + $(CXX) $(MINGW_CXXFLAGS) -o $@ ${wordlist 1,3,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS) $(libz) else @echo $(CXX) -o $@ ${wordlist 1,3,$^} ${filter-out -B%, $(MINGW_CXXFLAGS) $(MINGW_LDFLAGS)} $(libz);\ $(CXX) $(MINGW_CXXFLAGS) -o $@ ${wordlist 1,3,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS) $(libz) |