summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-07-24 00:46:47 +0000
committerSascha Schumann <sas@php.net>1999-07-24 00:46:47 +0000
commitcb2ab20a113b0f302e760e5ecd17304c13c9c9ba (patch)
treed67979a328137b67828465925b95f7693313b4e0 /buildconf
parent974f278257c715a32cfe494519b61a1d36434c0e (diff)
downloadphp-git-cb2ab20a113b0f302e760e5ecd17304c13c9c9ba.tar.gz
Bourne Shell does not have -nt.
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index 4c2b872525..d485e0664f 100755
--- a/buildconf
+++ b/buildconf
@@ -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..."