mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 03:18:08 +01:00
fix configure script to handle --prefix= and properly create Makefile.config
This also removes the Makefile.config from the repository, since it shouldn't be kept in the repository and should be created by the configure script.
This commit is contained in:
parent
a2a522a758
commit
cfa246272d
2 changed files with 11 additions and 4 deletions
|
@ -1,3 +0,0 @@
|
|||
prefix = /usr/local
|
||||
bash_completion_dir = /etc/bash_completion.d
|
||||
CFLAGS += -DHAVE_VALGRIND
|
12
configure
vendored
12
configure
vendored
|
@ -1,5 +1,15 @@
|
|||
#! /bin/sh
|
||||
|
||||
# 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.
|
||||
|
||||
|
@ -130,7 +140,7 @@ EOF
|
|||
|
||||
# construct the Makefile.config
|
||||
cat > Makefile.config <<EOF
|
||||
prefix = /usr/local
|
||||
prefix = $PREFIX
|
||||
bash_completion_dir = /etc/bash_completion.d
|
||||
CFLAGS += ${have_valgrind}
|
||||
EOF
|
||||
|
|
Loading…
Reference in a new issue