From 00fabe553ae0a64a1b132a35b4dcbf5722e29fb8 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Tue, 13 Jul 2010 17:24:13 +0000 Subject: [PATCH] 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 --- NEWS | 2 ++ scripts/Makefile.frag | 1 + 2 files changed, 3 insertions(+) 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); \ -- 2.50.1