From 4e7ab5ec7b3c07a7496ecb073c4cd9c8826149f2 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Wed, 23 Aug 2000 14:07:24 +0000 Subject: [PATCH] phpextdist is located in $(srcdir), so don't try to install it from $(builddir). --- pear/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.40.0