aboutsummaryrefslogtreecommitdiff
path: root/winsup/utils
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-09-01 02:33:50 +0000
committerChristopher Faylor <me@cgf.cx>2003-09-01 02:33:50 +0000
commitf6f88b66d2a85b26f0b86713dca150035ce0dd4f (patch)
tree63b9c9f11b44bbe6e4094568a683003d5d893b36 /winsup/utils
parent840fcfef8d3abc3ad5a9c69709ca7d783c569c68 (diff)
downloadnewlib-f6f88b66d2a85b26f0b86713dca150035ce0dd4f.zip
newlib-f6f88b66d2a85b26f0b86713dca150035ce0dd4f.tar.gz
newlib-f6f88b66d2a85b26f0b86713dca150035ce0dd4f.tar.bz2
* 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 b5b1bcd..6519180 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 c76187c..43c0ee5 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