diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2009-05-16 15:46:42 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2009-05-16 15:46:42 +0000 |
commit | 48829c1d861b1748958972e242fe57dca286fc81 (patch) | |
tree | cbd2fc1475dbb1ac6129cccb84b0934f564d6739 /winsup/utils/Makefile.in | |
parent | de8a5b78105f9c7f60213a4d15a31a03f7485b6d (diff) | |
download | cygnal-48829c1d861b1748958972e242fe57dca286fc81.tar.gz cygnal-48829c1d861b1748958972e242fe57dca286fc81.tar.bz2 cygnal-48829c1d861b1748958972e242fe57dca286fc81.zip |
* Makefile.in (cygpath.exe): Link against cygwin.a before linking
against ntdll.dll to avoid linking symbols defined in both DLLs
from ntdll.
(ps.exe): Ditto.
Diffstat (limited to 'winsup/utils/Makefile.in')
-rw-r--r-- | winsup/utils/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index 103942778..f80bcca33 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -71,8 +71,8 @@ cygcheck.exe: bloda.o path.o dump_setup.o # Provide any necessary per-target variable overrides. cygcheck.exe: MINGW_LDFLAGS += -lntdll -cygpath.exe: ALL_LDFLAGS += -lntdll -ps.exe: ALL_LDFLAGS += -lntdll +cygpath.exe: ALL_LDFLAGS += -lcygwin -lntdll +ps.exe: ALL_LDFLAGS += -lcygwin -lntdll ldd.exe: ALL_LDFLAGS += -lpsapi |