diff options
author | Jim Meyering <meyering@redhat.com> | 2009-09-26 14:13:16 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-09-26 14:45:50 +0200 |
commit | 30c65cd49c98e56b65beef8812a4a25df4b1178a (patch) | |
tree | 7068347fa5aea3de02b03634eb845635d1629d89 /bootstrap | |
parent | ca9e212cf804775f3f460e8b42a4cdb2c74f8ee4 (diff) | |
download | coreutils-30c65cd49c98e56b65beef8812a4a25df4b1178a.tar.xz |
maint: factor coreutils-specific code out of bootstrap
* bootstrap (bootstrap_epilogue): Define a default, empty function.
Remove coreutils-specific code, and instead,
invoke this new function at the end of this script.
* bootstrap.conf (bootstrap_epilogue): Define, to override the default.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -70,6 +70,9 @@ gnulib_modules= # Any gnulib files needed that are not in modules. gnulib_files= +# A function to be called after everything else in this script. +bootstrap_epilogue() { :; } + # The command to download all .po files for a specified domain into # a specified directory. Fill in the first %s is the domain name, and # the second with the destination directory. Use rsync's -L and -r @@ -801,10 +804,6 @@ if test $with_gettext = yes; then fi fi -# Horrible, coreutils-specific kludges. -# Change paths in gnulib-tests/gnulib.mk from "../.." to "..". -m=gnulib-tests/gnulib.mk -sed 's,\.\./\.\.,..,g' $m > $m-t -mv -f $m-t $m +bootstrap_epilogue echo "$0: done. Now you can run './configure'." |