diff options
-rw-r--r-- | pear/Makefile.frag | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pear/Makefile.frag b/pear/Makefile.frag index cb8f9f1f5b..fa2d371919 100644 --- a/pear/Makefile.frag +++ b/pear/Makefile.frag @@ -37,7 +37,8 @@ BUILD_FILES = \ scan_makefile_in.awk \ acinclude.m4 -bin_SCRIPTS = phpize php-config phpextdist +bin_SCRIPTS = phpize php-config +bin_src_SCRIPTS = phpextdist install-build: @echo "Installing build environment: $(INSTALL_ROOT)$(phpbuilddir)/" @@ -50,6 +51,10 @@ install-programs: echo " program: $$prog"; \ $(INSTALL) -m 755 $(builddir)/scripts/$$prog $(INSTALL_ROOT)$(bindir)/$$prog; \ done + @for prog in $(bin_src_SCRIPTS); do \ + echo " program: $$prog"; \ + $(INSTALL) -m 755 $(srcdir)/scripts/$$prog $(INSTALL_ROOT)$(bindir)/$$prog; \ + done HEADER_DIRS = \ / \ |