summaryrefslogtreecommitdiffstats
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-03-29 04:15:52 +0000
committerChristopher Faylor <me@cgf.cx>2003-03-29 04:15:52 +0000
commitb7f68d3e9d605cba6151e05c305ccfa827111286 (patch)
tree936d34aaa51d614ad12e7518ebb1a3290ffce46d /winsup
parent247808c13b9a843dba8d337e8c2080c396839876 (diff)
downloadcygnal-b7f68d3e9d605cba6151e05c305ccfa827111286.tar.gz
cygnal-b7f68d3e9d605cba6151e05c305ccfa827111286.tar.bz2
cygnal-b7f68d3e9d605cba6151e05c305ccfa827111286.zip
* Makefile.common (ALL_CXXFLAGS): Make normal '=' type variable so that
CXXFLAGS is properly interpreted.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/ChangeLog5
-rw-r--r--winsup/Makefile.common2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog
index 798f200a7..c04c56281 100644
--- a/winsup/ChangeLog
+++ b/winsup/ChangeLog
@@ -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
diff --git a/winsup/Makefile.common b/winsup/Makefile.common
index 33629c00a..d0c69ab7c 100644
--- a/winsup/Makefile.common
+++ b/winsup/Makefile.common
@@ -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