From: Tom Tromey Date: Sat, 7 Apr 2001 23:13:42 +0000 (+0000) Subject: 2001-04-07 Raja R Harinath X-Git-Tag: handle-languages~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77ee8e42a4280a7dcfed9ce44787d953ed53a657;p=thirdparty%2Fautomake.git 2001-04-07 Raja R Harinath * depcomp (gcc3): Invert test condition. --- diff --git a/ChangeLog b/ChangeLog index 0aa8a91cc..d5a55209f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-04-07 Raja R Harinath + + * depcomp (gcc3): Invert test condition. + 2001-04-07 Tom Tromey * depcomp (gcc3, gcc): Don't assume $? will be set in `if' diff --git a/depcomp b/depcomp index c61ed8137..71e0ec059 100755 --- 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 diff --git a/lib/depcomp b/lib/depcomp index c61ed8137..71e0ec059 100755 --- a/lib/depcomp +++ b/lib/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