diff options
author | Christopher Faylor <me@cgf.cx> | 2003-03-01 03:38:19 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-03-01 03:38:19 +0000 |
commit | dbc49afd5279aa30ca5ca98189443c69f65e6a22 (patch) | |
tree | 5a44790ef12d900dcb50e0940818427c8f92469c /winsup/utils/Makefile.in | |
parent | 005c3065ebdbdf897733268edce15aeb0e7e9fd6 (diff) | |
download | cygnal-dbc49afd5279aa30ca5ca98189443c69f65e6a22.tar.gz cygnal-dbc49afd5279aa30ca5ca98189443c69f65e6a22.tar.bz2 cygnal-dbc49afd5279aa30ca5ca98189443c69f65e6a22.zip |
* Makefile.in (cygcheck.o): Fix so that actual mingw include files are used.
* cygcheck.cc (find_on_path): Translate from cygwin path when qualified path
name found.
(pretty_id): New function. Dump output of id command.
(dump_sysinfo): Call pretty_id for CYGWIN=ntsec and CYGWIN=nontsec cases.
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 1b8440528..0c4e5bc3b 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -147,10 +147,10 @@ endif cygcheck.o: cygcheck.cc ifdef VERBOSE - ${filter-out -I$(newlib_source)/%,$(COMPILE_CXX)} $c -o $(@D)/$(basename $@)$o $(MINGW_CXXFLAGS) -I$(updir) $< + ${CXX} $c -o $(@D)/$(basename $@)$o $(MINGW_CXXFLAGS) -I$(updir) $< else @echo $(CXX) $c -o $(@D)/$(basename $@)$o $(MINGW_CXXFLAGS) ... $^;\ - ${filter-out -I$(newlib_source)/%,$(COMPILE_CXX)} $c -o $(@D)/$(basename $@)$o $(MINGW_CXXFLAGS) -I$(updir) $< + ${CXX} $c -o $(@D)/$(basename $@)$o $(MINGW_CXXFLAGS) -I$(updir) $< endif strace.o: strace.cc |