From: Kalle Sommer Nielsen Date: Tue, 13 Jul 2010 17:21:00 +0000 (+0000) Subject: Fixed bug #52037 (Concurrent builds fail in install-programs) -- Patch by Seanius... X-Git-Tag: php-5.4.0alpha1~191^2~1184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fcb098499159b50421c58817177a69543a2b5205;p=php Fixed bug #52037 (Concurrent builds fail in install-programs) -- Patch by Seanius at debian dot org --- 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); \