From e92d4a936d4c722ae09d5197d6c1465bcc8d5b0d Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Tue, 13 Jul 2010 17:24:44 +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 acc51c26b8..c31ae7451e 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,8 @@ PHP NEWS (Johannes) - Fixed bug #52237 (Crash when passing the reference of the property of a non-object). (Dmitry) +- Fixed bug #52037 (Concurrent builds fail in install-programs) (seanius at + debian dot org, Kalle) 01 Jul 2010, PHP 5.2.14RC2 - Fixed a possible interruption array leak in strrchr(). Reported by 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.40.0