aboutsummaryrefslogtreecommitdiff
path: root/libcpp
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@redhat.com>2006-01-17 17:10:02 +0000
committerDiego Novillo <dnovillo@redhat.com>2006-01-17 17:10:02 +0000
commit98f602a9f83231779236a76cf52895ea1a09cad2 (patch)
tree07f0a055260ae6f06384ca7c21d663f45b792956 /libcpp
parent9fc528a9b711db10c8fbdcdb8d4c5120f3c7e335 (diff)
Mainline merge as of 2006-01-17.
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gomp-20050608-branch@109827 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp')
-rw-r--r--libcpp/ChangeLog4
-rw-r--r--libcpp/Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index ad6653572cd..b4fae0d48ee 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,7 @@
+2006-02-05 Paolo Bonzini <bonzini@gnu.org>
+
+ * Makefile.in: Use -MMD instead of -MD.
+
2006-01-04 Dmitry Kurochkin <dmitry.kurochkin@gmail.com>
Richard Henderson <rth@redhat.com>
diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in
index 9336c5d3c7a..b5a6602ea63 100644
--- a/libcpp/Makefile.in
+++ b/libcpp/Makefile.in
@@ -194,7 +194,7 @@ update-po: $(CATALOGS:.gmo=.pox)
# Dependency rule.
COMPILE.base = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c
ifeq ($(DEPMODE),depmode=gcc3)
-COMPILE = $(COMPILE.base) -o $@ -MT $@ -MD -MP -MF $(DEPDIR)/$*.Po
+COMPILE = $(COMPILE.base) -o $@ -MT $@ -MMD -MP -MF $(DEPDIR)/$*.Po
else
COMPILE = source='$<' object='$@' libtool=no DEPDIR=$(DEPDIR) $(DEPMODE) \
$(depcomp) $(COMPILE.base)