From: Jameson Graef Rollins Date: Sat, 28 Nov 2009 23:22:58 +0000 (-0500) Subject: fix configure script to handle --prefix= and properly create Makefile.config X-Git-Tag: debian-0.1-1~19^2~24 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=cfa246272d61c735dd77b9a873ce477d81321c46;hp=a2a522a758518d19e0cf4b96cf3c55287b0fbf4f;ds=sidebyside 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. --- diff --git a/Makefile.config b/Makefile.config deleted file mode 100644 index ddc74365..00000000 --- a/Makefile.config +++ /dev/null @@ -1,3 +0,0 @@ -prefix = /usr/local -bash_completion_dir = /etc/bash_completion.d -CFLAGS += -DHAVE_VALGRIND diff --git a/configure b/configure index e55f067e..ab28fa30 100755 --- a/configure +++ b/configure @@ -1,5 +1,15 @@ #! /bin/sh +# defaults +PREFIX=/usr/local + +# option parsing +for option; do + if [ "${option%=*}" = '--prefix' ] ; then + PREFIX="${option#*=}" + fi +done + cat < Makefile.config <