diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-19 12:08:06 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-19 12:08:06 +0200 |
commit | 824226e0f4a2079c7447ab17f3a6a483131e1450 (patch) | |
tree | a46ea1e0b52b862a26f185460bb3c5963df3a0d0 /bootstrap.sh | |
parent | 6edb8f2c771b73d2cadf8e8c42b1d85c805b46f5 (diff) | |
download | egawk-824226e0f4a2079c7447ab17f3a6a483131e1450.tar.gz egawk-824226e0f4a2079c7447ab17f3a6a483131e1450.tar.bz2 egawk-824226e0f4a2079c7447ab17f3a6a483131e1450.zip |
Remove special treatment of CVS. Update POSIX.STD file.
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 3503a04b..f7db5bcf 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,6 +1,7 @@ #! /bin/sh -# bootstrap.sh --- touch relevant files to avoid out-of-date issues in CVS sandboxes +# bootstrap.sh --- touch relevant files to avoid out-of-date issues in +# Git sandboxes # Copyright (C) 2007, 2009, 2010 the Free Software Foundation, Inc. # @@ -21,15 +22,15 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -find . -name aclocal.m4 -print | grep -v /CVS/ | xargs touch -find awklib -type f -print | grep -v /CVS/ | xargs touch +find . -name aclocal.m4 -print | xargs touch +find awklib -type f -print | xargs touch sleep 1 touch configure sleep 2 touch configh.in sleep 1 touch test/Maketests -find . -name Makefile.in -print | grep -v /CVS/ | xargs touch +find . -name Makefile.in -print | xargs touch touch doc/*.info touch po/*.gmo touch po/stamp-po |