sniper Mon Dec 20 23:58:51 2004 EDT
Modified files:
/php-src/scripts Makefile.frag
Log:
- Fixed bug #28385 (files in $(prefix)/lib/php/build/* installed with wrong
permissions). (Jani, ramsy at ramix dot jp)
http://cvs.php.net/diff.php/php-src/scripts/Makefile.frag?r1=1.11&r2=1.12&ty=u
Index: php-src/scripts/Makefile.frag
diff -u php-src/scripts/Makefile.frag:1.11 php-src/scripts/Makefile.frag:1.12
--- php-src/scripts/Makefile.frag:1.11 Tue Nov 23 08:05:24 2004
+++ php-src/scripts/Makefile.frag Mon Dec 20 23:58:50 2004
@@ -9,18 +9,22 @@
BUILD_FILES = \
scripts/phpize.m4 \
build/mkdep.awk \
- build/shtool \
build/scan_makefile_in.awk \
Makefile.global \
acinclude.m4
+BUILD_FILES_EXEC = \
+ build/shtool
+
bin_SCRIPTS = phpize php-config
bin_src_SCRIPTS = phpextdist
install-build:
@echo "Installing build environment: $(INSTALL_ROOT)$(phpbuilddir)/"
@$(mkinstalldirs) $(INSTALL_ROOT)$(phpbuilddir)
$(INSTALL_ROOT)$(bindir) && \
- (cd $(top_srcdir) && $(INSTALL) $(BUILD_FILES)
$(INSTALL_ROOT)$(phpbuilddir))
+ (cd $(top_srcdir) && \
+ $(INSTALL) $(BUILD_FILES_EXEC) $(INSTALL_ROOT)$(phpbuilddir) && \
+ $(INSTALL_DATA) $(BUILD_FILES) $(INSTALL_ROOT)$(phpbuilddir))
HEADER_DIRS = \
/ \
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php