diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-09-01 01:46:38 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-09-01 21:25:13 +0200 |
commit | 1aaa8af9296c5bc7a05047f0114c9be7b3fdfea5 (patch) | |
tree | 0acc750c5ea1eea9d3536612884b5d10b28cc8ed | |
parent | 314457b2aed274984425d3156a8e2fb76662ea24 (diff) | |
download | coreutils-1aaa8af9296c5bc7a05047f0114c9be7b3fdfea5.tar.xz |
maint: add our 'bootstrap_post_import_hook' function
This is in preparation of future changes.
* bootstrap.conf (bootstrap_post_import_hook): New, will be executed
by bootstrap after gnulib-tool but before the autotools.
Move creation of dummy ChangeLog into it.
-rw-r--r-- | bootstrap.conf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bootstrap.conf b/bootstrap.conf index 535900d58..4fc4e67e3 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -324,8 +324,11 @@ tar - xz - " -# Automake requires that ChangeLog exist. -touch ChangeLog || exit 1 +bootstrap_post_import_hook () +{ + # Automake requires that ChangeLog exist. + touch ChangeLog || exit 1 +} bootstrap_epilogue() { |