]> granicus.if.org Git - php/commitdiff
Preserve the CVS versions of ltconfig/ltmain.sh during makedist.
authorStig Bakken <ssb@php.net>
Tue, 9 Nov 1999 16:57:26 +0000 (16:57 +0000)
committerStig Bakken <ssb@php.net>
Tue, 9 Nov 1999 16:57:26 +0000 (16:57 +0000)
#This is a temporary fix!

makedist

index c77887fde9217b2d4c7cf1c1884d536c6e4f6ab9..4bbc9e5ff3ad8c0bc2e1d1388f006ea2b8fa8315 100755 (executable)
--- a/makedist
+++ b/makedist
@@ -98,6 +98,10 @@ echo ""
 # remove CVS stuff...
 find . \( \( -name CVS -type d \) -o -name .cvsignore \) -exec rm -rf {} \;
 
+# hide away our own ltconfig/ltmain so they won't be overwritten
+mv ltconfig ltconfig.php
+mv ltmain.sh ltmain.sh.php
+
 # generate some files so people don't need bison, flex and autoconf
 # to install
 set -x
@@ -108,6 +112,10 @@ set -x
 echo "/* Dummy File */" > ext/bcmath/number.c
 echo "/* Dummy File */" > ext/bcmath/number.h
 
+# now restore our own ltconfig/ltmain.sh files
+mv ltconfig.php ltconfig
+mv ltmain.sh.php ltmain.sh
+
 cd $MY_OLDPWD
 $ECHO_N "makedist: making gzipped tar archive...$ECHO_C"
 tar czf $ARCHIVE $PKG-$VER || exit 8