diff options
author | Jim Meyering <jim@meyering.net> | 2007-02-20 17:20:22 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-02-20 17:20:22 +0100 |
commit | dd99d05b4a24966f22321793bfc45681652eceef (patch) | |
tree | b34c8a376202fd811b8ff97772aa6009c9621604 | |
parent | fd32ffb4da45270d26ecd4b6789636c3ffcc24fb (diff) | |
download | coreutils-dd99d05b4a24966f22321793bfc45681652eceef.tar.xz |
* bootstrap: Move definitions of temporary directory names and the
new bt_regex "up" to precede all uses, so it's clearer what their
scope is. Also, use [.], rather than \\., since the former works
even if eval'd.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | bootstrap | 9 |
2 files changed, 10 insertions, 4 deletions
@@ -1,5 +1,10 @@ 2007-02-20 Jim Meyering <jim@meyering.net> + * bootstrap: Move definitions of temporary directory names and the + new bt_regex "up" to precede all uses, so it's clearer what their + scope is. Also, use [.], rather than \\., since the former works + even if eval'd. + * bootstrap: Remove occurrences of $bt (._bootmp) from lib/Makefile. Based on the bison 2007-02-19 change by Joel E. Denny. @@ -29,6 +29,11 @@ nl=' LC_ALL=C export LC_ALL +# Temporary directory names. +bt='._bootmp' +bt_regex=`echo "$bt"| sed 's/\./[.]/g'` +bt2=${bt}2 + usage() { echo >&2 "\ Usage: $0 [OPTION]... @@ -416,10 +421,6 @@ slurp() { # Create boot temporary directories to import from gnulib and gettext. - -bt='._bootmp' -bt_regex=`echo "$bt"| sed 's/\./\\./g'` -bt2=${bt}2 rm -fr $bt $bt2 && mkdir $bt $bt2 || exit |