diff options
author | Andrey Hristov <andrey@php.net> | 1999-07-23 19:22:28 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-07-23 19:22:28 +0000 |
commit | 63a48afcd553cfdb3d17b80ad8c083694a255d0f (patch) | |
tree | 39eeef1f9ad68195c1caf13165d3ee568aa3cee9 /buildconf | |
parent | 028cf1a36825f58647835e374621be82d79b8ef4 (diff) | |
download | php-git-63a48afcd553cfdb3d17b80ad8c083694a255d0f.tar.gz |
Fix for compatibility.
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -70,7 +70,7 @@ if test "$1" = "--copy"; then automake_flags=--copy fi -if ! test -d libzend; then +if test ! -d libzend; then if test -d ../libzend; then echo "buildconf: linking ../libzend to ./libzend" ln -s ../libzend . @@ -80,7 +80,7 @@ if ! test -d libzend; then exit 1 fi fi -if ! test -d TSRM; then +if test ! -d TSRM; then if test -d ../TSRM; then echo "buildconf: linking ../TSRM to ./TSRM" ln -s ../TSRM . |