aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomi Ollila <tomi.ollila@iki.fi>2014-11-01 11:39:04 +0200
committerDavid Bremner <david@tethera.net>2014-11-02 19:40:05 +0100
commit96988e35c7aa44072fff07224c5e39254aa43e81 (patch)
treea223dab0e0e3d264c5e3e89c163dbda010c61924
parent3cc8ed5978157e26cf302ca5b1c9669efeb9ee44 (diff)
configure: move make {,install} instructions to the end
There was theorical possibility that writing the config files could have skipped (by interruption) after the instructions how to make notmuch was printed out.
-rwxr-xr-xconfigure21
1 files changed, 11 insertions, 10 deletions
diff --git a/configure b/configure
index 331f29bd..d14e7d17 100755
--- a/configure
+++ b/configure
@@ -724,16 +724,6 @@ printf "\n\t${WARN_CFLAGS}\n"
rm -f minimal minimal.c
-cat <<EOF
-
-All required packages were found. You may now run the following
-commands to compile and install notmuch:
-
- make
- sudo make install
-
-EOF
-
# construct the Makefile.config
cat > Makefile.config <<EOF
# This Makefile.config was automatically generated by the ./configure
@@ -969,3 +959,14 @@ NOTMUCH_HAVE_XAPIAN_COMPACT=${have_xapian_compact}
# documentation
NOTMUCH_HAVE_MAN=$((have_sphinx || have_rst2man))
EOF
+
+# Finally, after everything configured, inform the user how to continue.
+cat <<EOF
+
+All required packages were found. You may now run the following
+commands to compile and install notmuch:
+
+ make
+ sudo make install
+
+EOF