X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=bootstrap;h=6c56ceb441ff09f6a7237a8866ce583ad047a55c;hb=d8dc2699271d8d99a7bbd520960f5a10a6470be6;hp=779e713c0592d478ab41e1452f8e470020a16d4e;hpb=86c379f7c19842f68cb4eac8ef76871761b10800;p=chaz%2Ftar diff --git a/bootstrap b/bootstrap index 779e713..6c56ceb 100755 --- a/bootstrap +++ b/bootstrap @@ -2,7 +2,7 @@ # Bootstrap 'tar' from CVS. -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -271,7 +271,8 @@ echo "$0: Creating m4/gnulib.m4" echo "])") > ./m4/gnulib.m4 echo "$0: Creating lib/Makefile.am" -(cat lib/Makefile.tmpl +(echo "# This file is generated automatically from lib/Makefile.am. Do not edit!" + cat lib/Makefile.tmpl for gnulib_module in $gnulib_modules; do echo "# $gnulib_module" @@ -297,6 +298,12 @@ copy_files() { } copy_files ${PAXUTILS_SRCDIR}/m4 m4 +echo "$0: Creating m4/paxutils.m4" +(echo "# This file is generated automatically. Please, do not edit." + echo "#" + echo "AC_DEFUN([tar_PAXUTILS],[" + cat ${PAXUTILS_SRCDIR}/m4/DISTFILES | sed '/^#/d;s/\(.*\)\.m4/pu_\1/' | tr a-z A-Z + echo "])") > ./m4/paxutils.m4 if [ -d rmt ]; then : @@ -318,7 +325,7 @@ fi # Reconfigure, getting other files. echo "$0: autoreconf --verbose --install --force ..." -autoreconf --verbose --install --force +autoreconf --verbose --install --force || exit 1 echo "$0: done. Now you can run './configure'."