diff options
author | Christopher Faylor <me@cgf.cx> | 2003-03-17 22:35:53 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-03-17 22:35:53 +0000 |
commit | 298b2249e60ace3a77a10ff7c143a9614385e0df (patch) | |
tree | 3d4f854df13317c51dfed041003a088b35344cd8 /winsup | |
parent | 237ab58c28fc029b71ef1eb795081f7f106a4455 (diff) | |
download | newlib-298b2249e60ace3a77a10ff7c143a9614385e0df.zip newlib-298b2249e60ace3a77a10ff7c143a9614385e0df.tar.gz newlib-298b2249e60ace3a77a10ff7c143a9614385e0df.tar.bz2 |
* Makefile.common: Fix typo from previous checkin.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/Makefile.common | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog index 4f08a6e..eb07913 100644 --- a/winsup/ChangeLog +++ b/winsup/ChangeLog @@ -1,5 +1,9 @@ 2003-03-17 Christopher Faylor <cgf@redhat.com> + * Makefile.common: Fix typo from previous checkin. + +2003-03-17 Christopher Faylor <cgf@redhat.com> + * configure.in: w32api directory was already optional. Semi-revert 2003-02-06 change. * configure: Regenerate. diff --git a/winsup/Makefile.common b/winsup/Makefile.common index b0cf6df..950803d 100644 --- a/winsup/Makefile.common +++ b/winsup/Makefile.common @@ -118,7 +118,7 @@ ifeq (,${findstring $(gcc_libdir),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)}) GCC_INCLUDE:=${subst //,/,-I$(gcc_libdir)/include} endif -nostdinc:=${shell [ -d "$$srcdir/w32api" ] && echo "-nostdinc -nostdinc++"]} +nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc -nostdinc++"} COMPILE_CXX=$(CXX) $c $(nostdinc) $(ALL_CXXFLAGS) $(GCC_INCLUDE) \ -fno-rtti -fno-exceptions |