]> err.no Git - dpkg/commitdiff
Fix targets, so that if configure fails, but actually succeeds in creating
authorAdam Heath <doogie@debian.org>
Sun, 19 May 2002 09:08:38 +0000 (09:08 +0000)
committerAdam Heath <doogie@debian.org>
Sun, 19 May 2002 09:08:38 +0000 (09:08 +0000)
config.status(as might happen if one has a c-style comment in configure.in,
and the shell trys running /foo), then the build will actually fail
correctly.

ChangeLog
debian/rules

index 9f9533a9c640b616d6dc7a86b07f4617eb6cf027..46159c2a5391cd7256f00ec4c38c982a71d513cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sun May 19 04:09:25 CDT 2002 Adam Heath <doogie@debian.org>
+
+  * debian/rules: Fix targets, so that if configure fails, but actually
+    succeeds in creating config.status(as might happen if one has a
+    c-style comment in configure.in, and the shell trys running /foo), then
+    the build will actually fail correctly.
+
 Sun May 19 02:31:11 CDT 2002 Adam Heath <doogie@debian.org>
 
   * acconfig.h: Oops.  Forgot to add #undef HAVE_GNUC25_UNUSED.
index 1def05c99373509d95454f4f8982f7decec9f81d..85314efa9dea3f47565d116318ce2d1208a2c843 100755 (executable)
@@ -25,7 +25,7 @@ endif
 BUILD-DIRS     := $(BUILD) $(BUILD)-static
 
 # Setup the buildlocation
-$(BUILD)/config.status:
+$(BUILD)/configure-stamp:
        $(checkdir)
        install -d $(@D)
        cd $(@D) && LDFLAGS=$(LDFLAGS) $(DIR)/configure \
@@ -40,6 +40,7 @@ $(BUILD)/config.status:
                --with-zlib=static \
                --with-static-progs \
                $(config_arg)
+       touch $@
 
 clean:
        $(checkdir)
@@ -51,7 +52,7 @@ clean:
 
 build: stamp-build
 
-stamp-build: $(BUILD)/config.status
+stamp-build: $(BUILD)/configure-stamp
        $(MAKE) $(MFLAGS) -C $(BUILD)
 #      touch $@