summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-10-25 12:07:10 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-10-25 12:07:10 -0400
commit1ba5a166755794de2a31af5cdcb1d6ea95f637b9 (patch)
tree6f85f253789fe06d4e40853ff58aa008295f589e /configure
parent1d85b75e5d7d18a961c14bfdf38aee339f4f2e05 (diff)
Use configure --prefix
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 8 insertions, 4 deletions
diff --git a/configure b/configure
index 25a703df..e205575b 100755
--- a/configure
+++ b/configure
@@ -1632,20 +1632,24 @@ diagnostic() {
true "$@"
}
+if test $prefix = "NONE"; then
+ prefix=/usr/local
+fi
+
if test -z $BIN; then
- BIN=/usr/local/bin
+ BIN=$prefix/bin
fi
if test -z $LIB; then
- LIB=/usr/local/lib/urweb
+ LIB=$prefix/lib/urweb
fi
if test -z $INCLUDE; then
- INCLUDE=/usr/local/include/urweb
+ INCLUDE=$prefix/include/urweb
fi
if test -z $SITELISP; then
- SITELISP=/usr/local/share/emacs/site-lisp/urweb-mode
+ SITELISP=$prefix/share/emacs/site-lisp/urweb-mode
fi