mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
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.
This commit is contained in:
parent
3cc8ed5978
commit
96988e35c7
1 changed files with 11 additions and 10 deletions
21
configure
vendored
21
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue