From 56ec0f9c9c9dbc1e619828be66f961b4fae364a9 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 12 Sep 2006 15:14:51 +0000 Subject: [PATCH] * Makefile.in: Fix -ntdll typo. * cygcheck.cc (main): Restore POSIXLY_CORRECT before displaying user's environment. --- winsup/utils/ChangeLog | 11 ++++++++++- winsup/utils/Makefile.in | 4 ++-- 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 + + * Makefile.in: Fix -ntdll typo. + +2006-09-11 Eric Blake + + * cygcheck.cc (main): Restore POSIXLY_CORRECT before displaying user's + environment. + 2006-08-03 Corinna Vinschen * 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 - Eric Blake + Eric Blake * 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)