diff options
author | Sascha Schumann <sas@php.net> | 1999-07-24 00:46:47 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-07-24 00:46:47 +0000 |
commit | cb2ab20a113b0f302e760e5ecd17304c13c9c9ba (patch) | |
tree | d67979a328137b67828465925b95f7693313b4e0 /buildconf | |
parent | 974f278257c715a32cfe494519b61a1d36434c0e (diff) | |
download | php-git-cb2ab20a113b0f302e760e5ecd17304c13c9c9ba.tar.gz |
Bourne Shell does not have -nt.
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ # do some version checking for the tools we use if test "$1" = "--force"; then shift -elif test buildconf.stamp -nt buildconf ; then +elif test -e buildconf.stamp ; then : else echo "buildconf: checking installation..." |