]> git.eshelyaron.com Git - emacs.git/commitdiff
* configure.in: Add -MP to DEPFLAGS.
authorJan Djärv <jan.h.d@swipnet.se>
Fri, 26 Aug 2011 07:12:16 +0000 (09:12 +0200)
committerJan Djärv <jan.h.d@swipnet.se>
Fri, 26 Aug 2011 07:12:16 +0000 (09:12 +0200)
Fixes: debbugs:9372
ChangeLog
configure.in

index 55deca057514ba25d06ab6043fbe273954f017e4..dd8037900934a380e2ea55665d2c1216d2374617 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-26  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * configure.in: Add -MP to DEPFLAGS (Bug#9372).
+
 2011-08-13  Jan Djärv  <jan.h.d@swipnet.se>
 
        * configure.in: Add header check: sys/socket.h (Bug#8477),
index cfb9dc8bab26f82211b6ca281067a4bf1e6f0c7b..f62f364715fdac9ba316d191fcf02947ee6b9325 100644 (file)
@@ -1390,7 +1390,7 @@ if test "$GCC" = yes && test "$ac_enable_autodepend" = yes; then
    if test $HAVE_GNU_MAKE = yes; then
       AC_MSG_CHECKING([whether gcc understands -MMD -MF])
       SAVE_CFLAGS="$CFLAGS"
-      CFLAGS="$CFLAGS -MMD -MF deps.d"
+      CFLAGS="$CFLAGS -MMD -MF deps.d -MP"
       AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], , ac_enable_autodepend=no)
       CFLAGS="$SAVE_CFLAGS"
       test -f deps.d || ac_enable_autodepend=no
@@ -1398,7 +1398,7 @@ if test "$GCC" = yes && test "$ac_enable_autodepend" = yes; then
       AC_MSG_RESULT([$ac_enable_autodepend])
    fi
    if test $ac_enable_autodepend = yes; then
-      DEPFLAGS='-MMD -MF ${DEPDIR}/$*.d'
+      DEPFLAGS='-MMD -MF ${DEPDIR}/$*.d -MP'
       ## In parallel builds, another make might create depdir between
       ## the first test and mkdir, so stick another test on the end.
       ## Or use install-sh -d?  mkdir -p is not portable.