diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-22 19:19:57 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-22 19:19:57 +0000 |
commit | 0d35f28695ca02288aa473101c7baf243566702a (patch) | |
tree | 8427cfcfde7d40a9904ab22d41a63748c0d3f08b /bootstrap.conf | |
parent | 711f81145e32fe10499623b624086271a5470659 (diff) | |
download | coreutils-0d35f28695ca02288aa473101c7baf243566702a.tar.gz coreutils-0d35f28695ca02288aa473101c7baf243566702a.tar.bz2 coreutils-0d35f28695ca02288aa473101c7baf243566702a.zip |
* bootstrap (bootstrap_conf_cleanup): Remove.
(excluded_files): New var.
* bootstrap.conf: Likewise.
* bootstrap (slurp): Exclude files early if they're in the
excluded_files list. That way, their names don't get put into
.cvsignore.
Diffstat (limited to 'bootstrap.conf')
-rw-r--r-- | bootstrap.conf | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/bootstrap.conf b/bootstrap.conf index 6124e13da..bd83e9802 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -73,12 +73,9 @@ XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\ --flag=wrapf:1:c-format\\\ ' -# Clean up after getting gnulib and gettext files. -bootstrap_conf_cleanup() { - - # Gettext supplies these files, but we don't need them since - # we don't have an intl subdirectory. - files_to_remove=' +# Gettext supplies these files, but we don't need them since +# we don't have an intl subdirectory. +excluded_files=' m4/glibc2.m4 m4/intdiv0.m4 m4/inttypes-h.m4 @@ -91,7 +88,4 @@ bootstrap_conf_cleanup() { m4/ulonglong.m4 m4/visibility.m4 m4/xsize.m4 - ' - echo $0: rm -f $files_to_remove && - rm -f $files_to_remove -} +' |