Fix configure script to handle --prefix=

Reviewed-by: Carl Worth <cworth@cworth.org>:

This is really the fundamental thing that people expect a configure
script to do, so it's important to support it.
This commit is contained in:
Jameson Graef Rollins 2009-11-28 18:57:35 -05:00 committed by Carl Worth
parent 926c71e6b9
commit 2c2b31d536

12
configure vendored
View file

@ -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}