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
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-09-01 06:33:50 +0400
committerChristopher Faylor <me@cgf.cx>2003-09-01 06:33:50 +0400
commitf6f88b66d2a85b26f0b86713dca150035ce0dd4f (patch)
tree63b9c9f11b44bbe6e4094568a683003d5d893b36 /winsup/utils
parent840fcfef8d3abc3ad5a9c69709ca7d783c569c68 (diff)
* Makefile.in: Oops. Put the '...' in the right place.
Diffstat (limited to 'winsup/utils')
-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 b5b1bcd80..651918065 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,5 +1,9 @@
2003-08-31 Christopher Faylor <cgf@redhat.com>
+ * Makefile.in: Oops. Put the '...' in the right place.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
* Makefile.in: Display "..." when not-verbose.
* kill.cc (forcekill): Default to entered pid when pinfo fails. Issue
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in
index c76187c0a..43c0ee5da 100644
--- a/winsup/utils/Makefile.in
+++ b/winsup/utils/Makefile.in
@@ -205,8 +205,8 @@ endif
%.exe: %.o $(ALL_DEP_LDLIBS)
ifdef VERBOSE
- $(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ ... $(ALL_LDFLAGS)
+ $(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS)
else
- @echo $(CXX) -o $@ ${firstword $^} ${filter-out -B%, $(ALL_LDFLAGS)};\
+ @echo $(CXX) -o $@ ${firstword $^} ... ${filter-out -B%, $(ALL_LDFLAGS)};\
$(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS)
endif