[PATCH] configure: moved make {,install} instructions to the end
authorTomi Ollila <tomi.ollila@iki.fi>
Sat, 27 Sep 2014 13:40:19 +0000 (16:40 +0300)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:04:46 +0000 (10:04 -0800)
d2/21ca658ba92b3898ae6bc501113eee1f724cc9 [new file with mode: 0644]

diff --git a/d2/21ca658ba92b3898ae6bc501113eee1f724cc9 b/d2/21ca658ba92b3898ae6bc501113eee1f724cc9
new file mode 100644 (file)
index 0000000..dc4f91b
--- /dev/null
@@ -0,0 +1,104 @@
+Return-Path: <too@guru-group.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 1573E431FBD\r
+       for <notmuch@notmuchmail.org>; Sat, 27 Sep 2014 06:40:41 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id X8uaC-8hDIdI for <notmuch@notmuchmail.org>;\r
+       Sat, 27 Sep 2014 06:40:37 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+       by olra.theworths.org (Postfix) with ESMTP id 81869431FB6\r
+       for <notmuch@notmuchmail.org>; Sat, 27 Sep 2014 06:40:37 -0700 (PDT)\r
+Received: by guru.guru-group.fi (Postfix, from userid 501)\r
+       id B93F010008E; Sat, 27 Sep 2014 16:40:20 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH] configure: moved make {,install} instructions to the end\r
+Date: Sat, 27 Sep 2014 16:40:19 +0300\r
+Message-Id: <1411825219-12455-1-git-send-email-tomi.ollila@iki.fi>\r
+X-Mailer: git-send-email 2.0.0\r
+Cc: tomi.ollila@iki.fi\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sat, 27 Sep 2014 13:40:41 -0000\r
+\r
+There was theorical possibility that writing the config files could\r
+have skipped (by interruption) after the instructions how to make\r
+notmuch was printed out.\r
+\r
+Also, added the sh.config file configure started to create a while\r
+ago to .gitconfig.\r
+---\r
+ .gitignore |  1 +\r
+ configure  | 22 ++++++++++++----------\r
+ 2 files changed, 13 insertions(+), 10 deletions(-)\r
+\r
+diff --git a/.gitignore b/.gitignore\r
+index 1fb3a713cfe8..296030c76977 100644\r
+--- a/.gitignore\r
++++ b/.gitignore\r
+@@ -1,5 +1,6 @@\r
+ .first-build-message\r
+ Makefile.config\r
++sh.config\r
+ version.stamp\r
+ TAGS\r
+ tags\r
+diff --git a/configure b/configure\r
+index 0f304bfc92a1..ade7500d385e 100755\r
+--- a/configure\r
++++ b/configure\r
+@@ -731,16 +731,6 @@ printf "\n\t${WARN_CFLAGS}\n"\r
\r
+ rm -f minimal minimal.c\r
\r
+-cat <<EOF\r
+-\r
+-All required packages were found. You may now run the following\r
+-commands to compile and install notmuch:\r
+-\r
+-      make\r
+-      sudo make install\r
+-\r
+-EOF\r
+-\r
+ # construct the Makefile.config\r
+ cat > Makefile.config <<EOF\r
+ # This Makefile.config was automatically generated by the ./configure\r
+@@ -976,3 +966,15 @@ NOTMUCH_HAVE_XAPIAN_COMPACT=${have_xapian_compact}\r
+ # documentation\r
+ NOTMUCH_HAVE_MAN=$((have_sphinx || have_rst2man))\r
+ EOF\r
++\r
++\r
++# finally, after everything configured, inform the user\r
++cat <<EOF\r
++\r
++All required packages were found. You may now run the following\r
++commands to compile and install notmuch:\r
++\r
++      make\r
++      sudo make install\r
++\r
++EOF\r
+-- \r
+2.0.0\r
+\r