]> granicus.if.org Git - php/commitdiff
Partially revert. I did not notice there's alaready a .PHONY target for
authorMichael Wallner <mike@php.net>
Sat, 31 Jan 2015 09:57:53 +0000 (10:57 +0100)
committerMichael Wallner <mike@php.net>
Sat, 31 Jan 2015 09:57:53 +0000 (10:57 +0100)
generated_lists. Force removing configure before running autoconf is
enough to make this work as expected.

build/build.mk

index 6e2668287ece9bac5a29d037c794d6dbc9198c13..007f081f19dd7e3e903c4354c37a2cb4943c5f85 100644 (file)
@@ -22,16 +22,17 @@ SUBDIRS = Zend TSRM
 
 STAMP = buildmk.stamp
 
-all: $(STAMP) generated_lists
+ALWAYS = generated_lists
+
+
+all: $(STAMP) $(ALWAYS)
        @$(MAKE) -s -f build/build2.mk
 
-generated_lists: ALWAYS
+generated_lists:
        @echo makefile_am_files = Zend/Makefile.am TSRM/Makefile.am > $@
        @echo config_m4_files = Zend/Zend.m4 TSRM/tsrm.m4 TSRM/threads.m4 \
                Zend/acinclude.m4 ext/*/config*.m4 sapi/*/config.m4 >> $@
 
-ALWAYS:
-
 $(STAMP): build/buildcheck.sh
        @build/buildcheck.sh $(STAMP)