diff options
author | Michael Wallner <mike@php.net> | 2015-01-31 10:57:53 +0100 |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2015-01-31 10:57:53 +0100 |
commit | f5808f32ac1c9531cce1a4693fdca2d5bf25853e (patch) | |
tree | 40be0a1e90bbe70f393e783b183544bf5dbd24ce | |
parent | 130d7320b160443ca160ee6b3a19a034ee2c5ef1 (diff) | |
download | php-git-f5808f32ac1c9531cce1a4693fdca2d5bf25853e.tar.gz |
Partially revert. I did not notice there's alaready a .PHONY target for
generated_lists. Force removing configure before running autoconf is
enough to make this work as expected.
-rw-r--r-- | build/build.mk | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/build/build.mk b/build/build.mk index 6e2668287e..007f081f19 100644 --- a/build/build.mk +++ b/build/build.mk @@ -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) |