Browse Source

phpextdist is located in $(srcdir), so don't try to install it from

$(builddir).
PHP-4.0.5
Sascha Schumann 26 years ago
parent
commit
4e7ab5ec7b
  1. 3
      pear/Makefile.in

3
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

Loading…
Cancel
Save