diff options
author | Christopher Faylor <me@cgf.cx> | 2000-08-25 15:45:42 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-08-25 15:45:42 +0000 |
commit | e059aa71c642a057655a549771897002b07c85e2 (patch) | |
tree | 43caeef6de0b3a2301af8a75cc634ae8f748b6b5 /winsup/utils | |
parent | 8b99c9afcd891a66377b075ecefbb3284a4ad42d (diff) | |
download | newlib-e059aa71c642a057655a549771897002b07c85e2.zip newlib-e059aa71c642a057655a549771897002b07c85e2.tar.gz newlib-e059aa71c642a057655a549771897002b07c85e2.tar.bz2 |
* Makefile.in: Make failure to build dumper.exe a non-error.
Diffstat (limited to 'winsup/utils')
-rw-r--r-- | winsup/utils/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/utils/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog index 7d632ae..fec76b7 100644 --- a/winsup/utils/ChangeLog +++ b/winsup/utils/ChangeLog @@ -1,3 +1,7 @@ +Fri Aug 25 11:44:29 2000 Christopher Faylor <cgf@cygnus.com> + + * Makefile.in: Make failure to build dumper.exe a non-error. + Thu Aug 24 18:02:35 2000 Christopher Faylor <cgf@cygnus.com> * ps.cc (main): Always print a cygwin process using cygwin paths. diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index 092829a..d78ecde 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -116,9 +116,9 @@ $(mingw_build)/libmingw32.a: $(mingw_build)/Makefile dumper.exe: module_info.o parse_pe.o dumper.o $(ALL_DEP_LDLIBS) ifdef VERBOSE - $(CC) -o $@ ${wordlist 1,3,$^} -B$(cygwin_build)/ $(DUMPER_LDFLAGS) + -$(CC) -o $@ ${wordlist 1,3,$^} -B$(cygwin_build)/ $(DUMPER_LDFLAGS) else - @echo $(CC) -o $@ ${wordlist 1,3,$^} ${filter-out -B%, $(DUMPER_LDFLAGS)};\ + -@echo $(CC) -o $@ ${wordlist 1,3,$^} ${filter-out -B%, $(DUMPER_LDFLAGS)};\ $(CC) -o $@ ${wordlist 1,3,$^} -B$(cygwin_build)/ $(DUMPER_LDFLAGS) endif |