* Makefile.in: Fix -ntdll typo.
* cygcheck.cc (main): Restore POSIXLY_CORRECT before displaying user's environment.
This commit is contained in:
parent
1a0a1d3218
commit
56ec0f9c9c
|
@ -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>
|
2006-08-03 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* path.cc (vconcat): Don't convert backslahes to slashes.
|
* path.cc (vconcat): Don't convert backslahes to slashes.
|
||||||
|
@ -249,7 +258,7 @@
|
||||||
* mount.cc (longopts): Fix typo which disallows --options option.
|
* mount.cc (longopts): Fix typo which disallows --options option.
|
||||||
|
|
||||||
2005-07-19 Christopher Faylor <cgf@timesys.com>
|
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.
|
* cygcheck.cc (find_on_path): Perform .exe magic on non-PATH search.
|
||||||
|
|
||||||
|
|
|
@ -212,8 +212,8 @@ cygpath.exe: cygpath.o $(ALL_DEP_LDLIBS)
|
||||||
ifdef VERBOSE
|
ifdef VERBOSE
|
||||||
$(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) -lntdll
|
$(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) -lntdll
|
||||||
else
|
else
|
||||||
@echo $(CXX) -o $@ ${firstword $^} ${filter-out -B%, $(ALL_LDFLAGS) -ntdll};\
|
@echo $(CXX) -o $@ ${firstword $^} ${filter-out -B%, $(ALL_LDFLAGS) -lntdll};\
|
||||||
$(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) -ntdll
|
$(CXX) -o $@ ${firstword $^} -B$(cygwin_build)/ $(ALL_LDFLAGS) -lntdll
|
||||||
endif
|
endif
|
||||||
|
|
||||||
%.exe: %.o $(ALL_DEP_LDLIBS)
|
%.exe: %.o $(ALL_DEP_LDLIBS)
|
||||||
|
|
Loading…
Reference in New Issue