]> sourceware.org Git - automake.git/commitdiff
2001-04-07 Raja R Harinath <harinath@cs.umn.edu>
authorTom Tromey <tromey@redhat.com>
Sat, 7 Apr 2001 23:13:42 +0000 (23:13 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 7 Apr 2001 23:13:42 +0000 (23:13 +0000)
* depcomp (gcc3): Invert test condition.

ChangeLog
depcomp
lib/depcomp

index 0aa8a91cc08afe0df7beb5d4b6ac420ac0dbed7d..d5a55209f5a506c238f03f8684cf63bfd185f7a1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-04-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * depcomp (gcc3): Invert test condition.
+
 2001-04-07  Tom Tromey  <tromey@redhat.com>
 
        * depcomp (gcc3, gcc): Don't assume $? will be set in `if'
diff --git a/depcomp b/depcomp
index c61ed8137f39e7a64d94e6fa154c9b9867bfd431..71e0ec059044f367623589c9b27ad19fc695cdbd 100755 (executable)
--- a/depcomp
+++ b/depcomp
@@ -53,7 +53,7 @@ gcc3)
 ## we want.  Yay!
   "$@" -MT "$object" -MF "$tmpdepfile" -MD -MP
   stat=$?
-  if test $stat -ne 0; then :
+  if test $stat -eq 0; then :
   else
     rm -f "$tmpdepfile"
     exit $stat
index c61ed8137f39e7a64d94e6fa154c9b9867bfd431..71e0ec059044f367623589c9b27ad19fc695cdbd 100755 (executable)
@@ -53,7 +53,7 @@ gcc3)
 ## we want.  Yay!
   "$@" -MT "$object" -MF "$tmpdepfile" -MD -MP
   stat=$?
-  if test $stat -ne 0; then :
+  if test $stat -eq 0; then :
   else
     rm -f "$tmpdepfile"
     exit $stat
This page took 0.03237 seconds and 5 git commands to generate.