aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 11 insertions, 1 deletions
diff --git a/configure b/configure
index fd194ab0..70a3c3d8 100755
--- a/configure
+++ b/configure
@@ -3,6 +3,16 @@
CC=${CC:-gcc}
CXX=${CXX:-g++}
+# defaults
+PREFIX=/usr/local
+
+# option parsing
+for option; do
+ if [ "${option%=*}" = '--prefix' ] ; then
+ PREFIX="${option#*=}"
+ fi
+done
+
cat <<EOF
Welcome to Notmuch, a system for indexing, searching and tagging your email.
@@ -186,7 +196,7 @@ CC = ${CC}
CXX = ${CXX}
# The prefix to which notmuch should be installed
-prefix = /usr/local
+prefix = ${PREFIX}
# The directory to which emacs lisp files should be installed
emacs_lispdir=${emacs_lispdir}