diff options
author | Christopher Faylor <me@cgf.cx> | 2003-09-01 01:57:44 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-09-01 01:57:44 +0000 |
commit | 40d885eb7bb53e9f049f999a23d6aa9087649009 (patch) | |
tree | cdd4b79c364a9aabdc486d50198df938e0293a2f /winsup/utils/Makefile.in | |
parent | 12ffca1d84983fee8bd8636b9074b5bf574f428b (diff) | |
download | cygnal-40d885eb7bb53e9f049f999a23d6aa9087649009.tar.gz cygnal-40d885eb7bb53e9f049f999a23d6aa9087649009.tar.bz2 cygnal-40d885eb7bb53e9f049f999a23d6aa9087649009.zip |
* Makefile.in: Display "..." when not-verbose.
* kill.cc (forcekill): Default to entered pid when pinfo fails. Issue some
warnings when things don't work.
Diffstat (limited to 'winsup/utils/Makefile.in')
-rw-r--r-- | winsup/utils/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index a52d48fca..c76187c0a 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -205,7 +205,7 @@ 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)};\ $(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) |