diff options
author | Stig Bakken <ssb@php.net> | 2001-04-22 01:09:14 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-04-22 01:09:14 +0000 |
commit | 2cf1b8d3459736457b46c295eb2e8b87acb4f521 (patch) | |
tree | 01517b5cdaf822ea988cda5d444be6e7b98cc37b /Makefile.in | |
parent | 9dd0231844ab98f306c977e01ca27b6fbd791b93 (diff) | |
download | php-git-2cf1b8d3459736457b46c295eb2e8b87acb4f521.tar.gz |
* expanded the following constants and made them available in PHP:
DEFAULT_INCLUDE_PATH
PEAR_INSTALL_DIR
PHP_EXTENSION_DIR
PHP_BINDIR
PHP_LIBDIR
PHP_DATADIR
PHP_SYSCONFDIR
PHP_LOCALSTATEDIR
PHP_CONFIG_FILE_PATH
* no longer generating pear/PEAR.php
* fixed some tests
* some more installer work
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 1009646508..0bb067c87d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -50,7 +50,13 @@ install-modules: rm -f modules/*.la && \ cp modules/* $(INSTALL_ROOT)$(moduledir) >/dev/null 2>&1 || true -install-su: install-modules +install-tester: + -$(mkinstalldirs) $(datadir) + $(INSTALL) -m 755 $(srcdir)/run-tests.php $(INSTALL_ROOT)$(datadir) + +install-pear: install-modules (cd pear && $(MAKE) install) +install-su: install-pear install-tester + .NOEXPORT: |