Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-08-25 19:45:42 +0400
committerChristopher Faylor <me@cgf.cx>2000-08-25 19:45:42 +0400
commite059aa71c642a057655a549771897002b07c85e2 (patch)
tree43caeef6de0b3a2301af8a75cc634ae8f748b6b5 /winsup
parent8b99c9afcd891a66377b075ecefbb3284a4ad42d (diff)
* Makefile.in: Make failure to build dumper.exe a non-error.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/utils/ChangeLog4
-rw-r--r--winsup/utils/Makefile.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 7d632ae03..fec76b728 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 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