]> sourceware.org Git - newlib-cygwin.git/commitdiff
* Makefile.common (ALL_CXXFLAGS): Make normal '=' type variable so that
authorChristopher Faylor <me@cgf.cx>
Sat, 29 Mar 2003 04:15:52 +0000 (04:15 +0000)
committerChristopher Faylor <me@cgf.cx>
Sat, 29 Mar 2003 04:15:52 +0000 (04:15 +0000)
CXXFLAGS is properly interpreted.

winsup/ChangeLog
winsup/Makefile.common

index 798f200a7fb0537f98ff8fbf831c38ccb39ca5c7..c04c56281ad011aa2acd57670c9bca1d3bdf6083 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-28  Christopher Faylor  <cgf@redhat.com>
+
+       * Makefile.common (ALL_CXXFLAGS): Make normal '=' type variable so that
+       CXXFLAGS is properly interpreted.
+
 2003-03-17  Christopher Faylor  <cgf@redhat.com>
 
        * Makefile.common (w32api_lib): Default to system w32api directory if
index 33629c00a28d8f86c600ed3e8ba221ad76e23803..d0c69ab7c2df9c8ceb6778f140365f14d3bc5300 100644 (file)
@@ -102,7 +102,7 @@ LIBM:=$(newlib_build)/libm/libm.a
 CRT0:=$(newlib_build)/libc/crt0.o
 
 ALL_CFLAGS:=$(DEFS) $(MALLOC_DEBUG) $(CFLAGS) $(GCC_DEFAULT_OPTIONS)
-ALL_CXXFLAGS:=$(DEFS) $(MALLOC_DEBUG) $(CXXFLAGS) $(GCC_DEFAULT_OPTIONS)
+ALL_CXXFLAGS=$(DEFS) $(MALLOC_DEBUG) $(CXXFLAGS) $(GCC_DEFAULT_OPTIONS)
 
 ifndef PREPROCESS
 c=-c
This page took 0.031337 seconds and 5 git commands to generate.