From: Kalle Sommer Nielsen Date: Tue, 13 Jul 2010 17:24:13 +0000 (+0000) Subject: MFT: Fixed bug #52037 (Concurrent builds fail in install-programs) -- Patch by Seaniu... X-Git-Tag: php-5.3.3RC3~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00fabe553ae0a64a1b132a35b4dcbf5722e29fb8;p=php MFT: Fixed bug #52037 (Concurrent builds fail in install-programs) -- Patch by Seanius at debian dot org # Sorry for the non sparse commit, due to a broken co --- diff --git a/NEWS b/NEWS index 9583db633b..b5d0e4ee0b 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,8 @@ PHP NEWS results and PHP crashes). (Felipe) - Fixed bug #52238 (Crash when an Exception occured in iterator_to_array). (Johannes) +- Fixed bug #52037 (Concurrent builds fail in install-programs) (seanius at + debian dot org, Kalle) - Fixed bug #51697 (Unsafe operations in free_storage of SPL iterators, causes crash during shutdown). (Etienne) diff --git a/scripts/Makefile.frag b/scripts/Makefile.frag index 632cbb00d7..00272b02b1 100644 --- a/scripts/Makefile.frag +++ b/scripts/Makefile.frag @@ -33,6 +33,7 @@ install-build: install-programs: $(builddir)/phpize $(builddir)/php-config @echo "Installing helper programs: $(INSTALL_ROOT)$(bindir)/" + @$(mkinstalldirs) $(INSTALL_ROOT)$(bindir) @for prog in $(bin_SCRIPTS); do \ echo " program: $(program_prefix)$${prog}$(program_suffix)"; \ $(INSTALL) -m 755 $(builddir)/$${prog} $(INSTALL_ROOT)$(bindir)/$(program_prefix)$${prog}$(program_suffix); \