summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2009-07-13 17:36:49 +0000
committerRasmus Lerdorf <rasmus@php.net>2009-07-13 17:36:49 +0000
commitfe8bed83942c64698cc21f57ce9334d9ece8fe96 (patch)
treed0271e28f0705b11ee2eafda96d4f0aa6cbe55b5 /build
parent06033b58457c684dd436ad1062416d0f6e1d91f9 (diff)
downloadphp-git-fe8bed83942c64698cc21f57ce9334d9ece8fe96.tar.gz
svn propdel svn:mime-type build/buildcheck.sh
cvs->svn
Diffstat (limited to 'build')
-rwxr-xr-xbuild/buildcheck.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh
index 9af2984f53..a3b8fef6e9 100755
--- a/build/buildcheck.sh
+++ b/build/buildcheck.sh
@@ -33,14 +33,14 @@ ac_version=`$PHP_AUTOCONF --version 2>/dev/null|head -n 1|sed -e 's/^[^0-9]*//'
if test -z "$ac_version"; then
echo "buildconf: autoconf not found."
echo " You need autoconf version 2.13 or newer installed"
-echo " to build PHP from CVS."
+echo " to build PHP from SVN."
exit 1
fi
IFS=.; set $ac_version; IFS=' '
if test "$1" = "2" -a "$2" -lt "13" || test "$1" -lt "2"; then
echo "buildconf: autoconf version $ac_version found."
echo " You need autoconf version 2.13 or newer installed"
-echo " to build PHP from CVS."
+echo " to build PHP from SVN."
exit 1
else
echo "buildconf: autoconf version $ac_version (ok)"
@@ -48,9 +48,9 @@ fi
if test "$1" = "2" && test "$2" -ge "50"; then
echo "buildconf: Your version of autoconf likely contains buggy cache code."
- echo " Running cvsclean for you."
+ echo " Running svnclean for you."
echo " To avoid this, install autoconf-2.13."
- ./cvsclean
+ ./svnclean
stamp=
fi