diff options
author | Sascha Schumann <sas@php.net> | 1999-07-23 19:37:59 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-07-23 19:37:59 +0000 |
commit | 270be258d3e4f6366e05aa863f4f4935c6c61951 (patch) | |
tree | 32480bc14a548bf4a6346a7f7fa5482eff74f2c4 /buildconf | |
parent | 63a48afcd553cfdb3d17b80ad8c083694a255d0f (diff) | |
download | php-git-270be258d3e4f6366e05aa863f4f4935c6c61951.tar.gz |
Improve speed on subsequent runs of buildconf
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -3,6 +3,8 @@ # do some version checking for the tools we use if test "$1" = "--force"; then shift +elif test buildconf.stamp -nt buildconf ; then + : else echo "buildconf: checking installation..." @@ -61,9 +63,8 @@ else echo " to build PHP from CVS." exit 1 fi - - # The stuff from libtool we need is in CVS right now, so it is - # not required to run buildconf. + + touch buildconf.stamp fi if test "$1" = "--copy"; then |