]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* depend2.am (DEP_@FPFX@COMPILE): Use `!=' and not `-ne'.
authorTom Tromey <tromey@redhat.com>
Mon, 29 Mar 1999 02:26:31 +0000 (02:26 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 29 Mar 1999 02:26:31 +0000 (02:26 +0000)
ChangeLog
depend2.am

index 07d1b1f2d0c01fe812209085f7d4a12212c37cc7..d68402735e0fd5e83887484c42280f18f5da941f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-03-29  Tom Tromey  <tromey@cygnus.com>
 
+       * depend2.am (DEP_@FPFX@COMPILE): Use `!=' and not `-ne'.
+
        * compile.am (.c.obj): Also disabled when dependency tracking
        enabled.
        * depend2.am (@EXT@.obj): New target.
index 1a7caec4c973e027b6992924305b2c933740db24..9cbb97b1e6038561dd78b2bdfea08127a087a414 100644 (file)
@@ -20,7 +20,7 @@
 ## automake's `.am' file reader.  This is a convenience macro a user
 ## can use to run a compilation.  You should set the shell variables
 ## `file' and `compile' first.
-DEP_@FPFX@COMPILE = $(DEP_@FPFX@PRECOMP); echo " $$compile -c $$file"; $$compile $(DEP_@FPFX@FLAG) -c $$file; status=$$?; if test "$$status" -ne 0; then exit $$status; else $(DEP_@FPFX@POSTCOMP); fi
+DEP_@FPFX@COMPILE = $(DEP_@FPFX@PRECOMP); echo " $$compile -c $$file"; $$compile $(DEP_@FPFX@FLAG) -c $$file; status=$$?; if test "$$status" != 0; then exit $$status; else $(DEP_@FPFX@POSTCOMP); fi
 
 @EXT@.o:
        @file='$<'; compile='$(@PFX@COMPILE)'; \