summaryrefslogtreecommitdiff
path: root/bootstrap.conf
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.conf')
-rw-r--r--bootstrap.conf6
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstrap.conf b/bootstrap.conf
index 4fc4e67e3..4ef3fc80d 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -327,7 +327,11 @@ xz -
bootstrap_post_import_hook ()
{
# Automake requires that ChangeLog exist.
- touch ChangeLog || exit 1
+ touch ChangeLog || return 1
+ # List of coreutils programs. See heading comments in the invoked
+ # script for more info.
+ build-aux/gen-lists-of-programs.sh --autoconf >m4/cu-progs.m4 || return 1
+ build-aux/gen-lists-of-programs.sh --automake >src/cu-progs.mk || return 1
}
bootstrap_epilogue()