summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-10-02 11:47:35 +0000
committerJim Meyering <jim@meyering.net>2006-10-02 11:47:35 +0000
commitd8086bc22032b86cde2a9fea39dfe2c81e21cd6b (patch)
treee6693b5e5a3288b8fa198c9fe28d5f2e21359d07 /bootstrap
parent2244cc1456cc45844602b4b5a8a14d5cbbc65ea7 (diff)
downloadcoreutils-d8086bc22032b86cde2a9fea39dfe2c81e21cd6b.tar.xz
* bootstrap: Undo last change to this file, since now gnulib-tool
sticks with the automake default in generating dependencies.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap7
1 files changed, 2 insertions, 5 deletions
diff --git a/bootstrap b/bootstrap
index a9124017a..93cfd623c 100755
--- a/bootstrap
+++ b/bootstrap
@@ -326,13 +326,10 @@ slurp() {
if test $file = Makefile.am; then
copied=$copied${sep}gnulib.mk; sep=$nl
remove_intl='/^[^#].*\/intl/s/^/#/'
- no_dep=no-dependencies
- remove_no_dep="/^AUTOMAKE_OPTIONS =.* $no_dep/s/ $no_dep//"
- sed_xform="$remove_intl;$remove_no_dep"
- sed "$sed_xform" $1/$dir/$file | cmp -s - $dir/gnulib.mk || {
+ sed "$remove_intl" $1/$dir/$file | cmp -s - $dir/gnulib.mk || {
echo "$0: Copying $1/$dir/$file to $dir/gnulib.mk ..." &&
rm -f $dir/gnulib.mk &&
- sed "$sed_xform" $1/$dir/$file >$dir/gnulib.mk
+ sed "$remove_intl" $1/$dir/$file >$dir/gnulib.mk
}
elif { test "${2+set}" = set && test -r $2/$dir/$file; } ||
grep -F "/$file/" $dir/CVS/Entries 2>/dev/null |