diff options
author | Jon Parise <jon@php.net> | 2002-05-02 05:36:21 +0000 |
---|---|---|
committer | Jon Parise <jon@php.net> | 2002-05-02 05:36:21 +0000 |
commit | b2579d3480226f540efd0c50e0fc54ef5dd91a86 (patch) | |
tree | 9e554ddd40d4fe25a49586695667a0bf2fb212d9 | |
parent | 8ee815ec91f42c9aa18e8cdef7c68090394a4dc5 (diff) | |
download | php-git-b2579d3480226f540efd0c50e0fc54ef5dd91a86.tar.gz |
Revert the previous commit (revision 1.40).
@bindir@ ended up becoming '${exec_prefix}' (literally) on my system
(FreeBSD 4.5), thus producing a broken shebang line.
@prefix@ works fine for me here. If @bindir@ is indeed preferred, the
substitution problem noted above needs to be resolved before the change
is reapplied.
-rw-r--r-- | pear/scripts/pear.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/scripts/pear.in b/pear/scripts/pear.in index ccb93ac7c4..dc2561d16b 100644 --- a/pear/scripts/pear.in +++ b/pear/scripts/pear.in @@ -1,4 +1,4 @@ -#!@bindir@/php -Cq +#!@prefix@/bin/php -Cq <?php // -*- PHP -*- // // +----------------------------------------------------------------------+ |