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/Makefile.in | |
parent | 8b99c9afcd891a66377b075ecefbb3284a4ad42d (diff) | |
download | cygnal-e059aa71c642a057655a549771897002b07c85e2.tar.gz cygnal-e059aa71c642a057655a549771897002b07c85e2.tar.bz2 cygnal-e059aa71c642a057655a549771897002b07c85e2.zip |
* Makefile.in: Make failure to build dumper.exe a non-error.
Diffstat (limited to 'winsup/utils/Makefile.in')
-rw-r--r-- | winsup/utils/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index 092829ac1..d78ecdeba 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 |