diff options
author | Jan Holesovsky <kendy@suse.cz> | 2010-11-29 13:51:34 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2010-11-29 13:51:34 +0100 |
commit | 1a57b2b974522604b89e224c6b2477bf34a8269a (patch) | |
tree | b7f3e6eea25c52de52449687df8b2c791cbe6cb1 | |
parent | 380790ff2e5e765ff7a1c947c361dfd727f95ff7 (diff) |
configure.in: Move the post_download creation up a bit.feature/bootstrap-build
So that the message about what to do now (issue make and make dev-install) is
the last thing the user sees.
-rw-r--r-- | configure.in | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 7ec28fa6b..0dc422209 100644 --- a/configure.in +++ b/configure.in @@ -7976,6 +7976,14 @@ AC_SUBST(BUILD_TYPE) # make sure config.guess is +x; we execute config.guess, so it has to be so; chmod +x ./config.guess +dnl Setting up the post_download check script +dnl Using autoconf here, so that the migration from the previous state +dnl (checks for the additional Windows downloads were directly in +dnl configure.in) is as easy as possible +echo "setting up the post_download check script" +autoconf post_download.in > post_download +chmod +x post_download + # Generate a configuration timestamp we can use for deps if test -f set_soenv; then mv -f set_soenv set_soenv.last @@ -8016,8 +8024,3 @@ else fi echo fi - -dnl Setting up the post_download check script -echo "setting up the post_download check script" -autoconf post_download.in > post_download -chmod +x post_download |