From: Sascha Schumann Date: Wed, 23 Aug 2000 14:07:24 +0000 (+0000) Subject: phpextdist is located in $(srcdir), so don't try to install it from X-Git-Tag: php-4.0.2~112 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e7ab5ec7b3c07a7496ecb073c4cd9c8826149f2;p=php phpextdist is located in $(srcdir), so don't try to install it from $(builddir). --- diff --git a/pear/Makefile.in b/pear/Makefile.in index 9a015d014a..fdd1ffcee4 100644 --- a/pear/Makefile.in +++ b/pear/Makefile.in @@ -61,13 +61,14 @@ BUILD_FILES = \ dynlib.m4 \ acinclude.m4 -bin_PROGRAMS = phpize php-config pear phpextdist +bin_PROGRAMS = phpize php-config pear install-build: $(mkinstalldirs) $(builddir) $(bindir) && \ (cd $(top_srcdir) && cp $(BUILD_FILES) $(builddir)) install-programs: + $(INSTALL) -m 755 $(srcdir)/phpextdist $(bindir)/phpextdist for prog in $(bin_PROGRAMS); do \ $(INSTALL) -m 755 $$prog $(bindir)/$$prog; \ done