aboutsummaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-12-03 00:21:21 +0000
committerChristopher Faylor <me@cgf.cx>2003-12-03 00:21:21 +0000
commitaf9ef8abb2ad0423c20b28c5050a3b6e82d4e90c (patch)
tree3d6b93d5eb25185b83d37620948312c0be97212d /winsup
parente575a697ba932896ae5f1b7263a93ef334bbf771 (diff)
downloadnewlib-af9ef8abb2ad0423c20b28c5050a3b6e82d4e90c.zip
newlib-af9ef8abb2ad0423c20b28c5050a3b6e82d4e90c.tar.gz
newlib-af9ef8abb2ad0423c20b28c5050a3b6e82d4e90c.tar.bz2
* Makefile.in: Change the way that -f options are appended to CFLAGS, slightly.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 4136f9e..3d2a5dc 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2003-12-02 Christopher Faylor <cgf@redhat.com>
+ * Makefile.in: Change the way that -f options are appended to CFLAGS,
+ slightly.
+
+2003-12-02 Christopher Faylor <cgf@redhat.com>
+
* fcntl.cc (_fcntl): Silence a compiler warning.
2003-12-02 Pierre Humblet <pierre.humblet@ieee.org>
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index 3a6f062..502934d 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -51,8 +51,8 @@ DEFS:=@DEFS@
CC:=@CC@
# FIXME: Which is it, CC or CC_FOR_TARGET?
CC_FOR_TARGET:=$(CC)
-CFLAGS=@CFLAGS@ -fmerge-constants -ftracer
-override CFLAGS+=-MMD ${$(*F)_CFLAGS}
+CFLAGS=@CFLAGS@
+override CFLAGS+=-MMD ${$(*F)_CFLAGS} -fmerge-constants -ftracer
CXX=@CXX@
CXXFLAGS=@CXXFLAGS@