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>2006-09-12 19:14:51 +0400
committerChristopher Faylor <me@cgf.cx>2006-09-12 19:14:51 +0400
commit56ec0f9c9c9dbc1e619828be66f961b4fae364a9 (patch)
tree06beff77a596a31491b5df625a5aa6f1d37b957b /winsup/utils
parent1a0a1d32183848ed77d697d29d0042f7f7ed0edb (diff)
* Makefile.in: Fix -ntdll typo.
* cygcheck.cc (main): Restore POSIXLY_CORRECT before displaying user's environment.
Diffstat (limited to 'winsup/utils')
-rw-r--r--winsup/utils/ChangeLog11
-rw-r--r--winsup/utils/Makefile.in4
2 files changed, 12 insertions, 3 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 9f6ff8ca0..af084415e 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,3 +1,12 @@
+2006-09-12 Christopher Faylor <cgf@timesys.com>
+
+ * Makefile.in: Fix -ntdll typo.
+
+2006-09-11 Eric Blake <ebb9@byu.net>
+
+ * cygcheck.cc (main): Restore POSIXLY_CORRECT before displaying user's
+ environment.
+
2006-08-03 Corinna Vinschen <corinna@vinschen.de>
* path.cc (vconcat): Don't convert backslahes to slashes.
@@ -249,7 +258,7 @@
* mount.cc (longopts): Fix typo which disallows --options option.
2005-07-19 Christopher Faylor <cgf@timesys.com>
- Eric Blake <ebb9@byu.net>
+ Eric Blake <ebb9@byu.net>
* cygcheck.cc (find_on_path): Perform .exe magic on non-PATH search.
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in
index a14a18f67..b8f86d8b4 100644
--- a/winsup/utils/Makefile.in
+++ b/winsup/utils/Makefile.in
@@ -212,8 +212,8 @@ cygpath.exe: cygpath.o $(ALL_DEP_LDLIBS)
ifdef VERBOSE
$(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) -lntdll
else
- @echo $(CXX) -o $@ ${firstword $^} ${filter-out -B%, $(ALL_LDFLAGS) -ntdll};\
- $(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) -ntdll
+ @echo $(CXX) -o $@ ${firstword $^} ${filter-out -B%, $(ALL_LDFLAGS) -lntdll};\
+ $(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) -lntdll
endif
%.exe: %.o $(ALL_DEP_LDLIBS)