DELETED build/autogen.sh Index: build/autogen.sh ================================================================== --- build/autogen.sh +++ build/autogen.sh @@ -1,5 +0,0 @@ -#! /bin/bash - -aclocal -I aclocal -autoconf -rm -rf autom4te.cache Index: build/makearch.info ================================================================== --- build/makearch.info +++ build/makearch.info @@ -14,11 +14,11 @@ # each time a "makearch" is done. # # If @@SVNLCR@@ is used anywhere in this version number, it will be # replaced with the highest last-changed-rev from the output of # svn info -R (or 0) -VERS="0.9.11" +VERS="0.9.12" # Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} @@ -27,11 +27,11 @@ DOCS="README" DOC_HDR="HEADER" # These files follow the same convention as DOCS, but don't have the header # tacked onto them. -UPDATE_VARS="configure.ac configure" +UPDATE_VARS="configure.ac" # This script is executed immediately after copying the files # to a temp directory to attempt to compile BEFORE="build/pre.sh" @@ -38,6 +38,6 @@ # This script is executed immediately prior to creation of the # tarball AFTER="" # Files matching these (space-seperated) patterns are deleted -TMPS="*.out HEADER build work" +TMPS="*.out HEADER build work autogen.sh" Index: build/pre.sh ================================================================== --- build/pre.sh +++ build/pre.sh @@ -1,8 +1,10 @@ #! /bin/bash -./build/autogen.sh -rm -f aclocal.m4 +./autogen.sh +rm -rf aclocal -rm -rf work +cat Makefile.in | sed '/^mrproper:/,/^$/ d' > Makefile.in.new +cat Makefile.in.new > Makefile.in +rm -f Makefile.in.new exit 0