Browse Source

builddir is used by the Unix build framework.

Rename builddir to phpbuilddir
PHP-4.0.5
Sascha Schumann 26 years ago
parent
commit
876bac4823
  1. 6
      pear/Makefile.in

6
pear/Makefile.in

@ -45,7 +45,7 @@ install-data-local: PEAR.php
fi fi
phpincludedir = $(includedir)/php phpincludedir = $(includedir)/php
builddir = $(prefix)/lib/php/build
phpbuilddir = $(prefix)/lib/php/build
BUILD_FILES = \ BUILD_FILES = \
pear/pear.m4 \ pear/pear.m4 \
@ -64,8 +64,8 @@ BUILD_FILES = \
bin_PROGRAMS = phpize php-config pear bin_PROGRAMS = phpize php-config pear
install-build: install-build:
$(mkinstalldirs) $(builddir) $(bindir) && \
(cd $(top_srcdir) && cp $(BUILD_FILES) $(builddir))
$(mkinstalldirs) $(phpbuilddir) $(bindir) && \
(cd $(top_srcdir) && cp $(BUILD_FILES) $(phpbuilddir))
install-programs: install-programs:
$(INSTALL) -m 755 $(srcdir)/phpextdist $(bindir)/phpextdist $(INSTALL) -m 755 $(srcdir)/phpextdist $(bindir)/phpextdist

Loading…
Cancel
Save