diff options
author | SVN Migration <svn@php.net> | 1999-09-26 20:17:29 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 1999-09-26 20:17:29 +0000 |
commit | 1408a2e29c8ca275f2ed4ad67c2348c1b262b2a9 (patch) | |
tree | 89341e8111ed37cad0bee64ce201bf4ebc6662bf /TSRM/buildconf | |
parent | 96b6bdff278628821151f16f6f4e8ecec3cea228 (diff) | |
download | php-git-before-sapi-split.tar.gz |
This commit was manufactured by cvs2svn to create tag 'before-sapi-split'.before-sapi-split
Diffstat (limited to 'TSRM/buildconf')
-rwxr-xr-x | TSRM/buildconf | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/TSRM/buildconf b/TSRM/buildconf deleted file mode 100755 index 60251e105b..0000000000 --- a/TSRM/buildconf +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -mv aclocal.m4 aclocal.m4.old 2>/dev/null -aclocal -if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then - echo "buildconf: keeping ${1}aclocal.m4" - mv aclocal.m4.old aclocal.m4 -else - echo "buildconf: created or modified ${1}aclocal.m4" -fi - -#autoheader - -automake --add-missing --include-deps - -mv configure configure.old 2>/dev/null -autoconf -if cmp configure.old configure > /dev/null 2>&1; then - echo "buildconf: keeping ${1}configure" - mv configure.old configure -else - echo "buildconf: created or modified ${1}configure" -fi - |