diff options
| author | Tomi Ollila <tomi.ollila@iki.fi> | 2014-11-01 11:39:04 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2014-11-02 19:40:05 +0100 |
| commit | 96988e35c7aa44072fff07224c5e39254aa43e81 (patch) | |
| tree | a223dab0e0e3d264c5e3e89c163dbda010c61924 | |
| parent | 3cc8ed5978157e26cf302ca5b1c9669efeb9ee44 (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-x | configure | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -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 |
