Commit bc7e6301 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 722786 - configure --prefix=/opt/foo not accepted

parent 62379ff8
...@@ -55,9 +55,15 @@ f_langs=`ls -1 src/translator_??.h | sed -e 's%src/translator_%%g' | sed -e 's/\ ...@@ -55,9 +55,15 @@ f_langs=`ls -1 src/translator_??.h | sed -e 's%src/translator_%%g' | sed -e 's/\
while test -n "$1"; do while test -n "$1"; do
case $1 in case $1 in
--prefix=*)
f_prefix=`echo $1 | sed 's/^--prefix=//'`
;;
--prefix | -prefix) --prefix | -prefix)
shift; f_prefix=$1 shift; f_prefix=$1
;; ;;
--docdir=*)
f_docdir=`echo $1 | sed 's/^--docdir=//'`
;;
--docdir | -docdir) --docdir | -docdir)
shift; f_docdir=$1 shift; f_docdir=$1
;; ;;
...@@ -76,30 +82,57 @@ while test -n "$1"; do ...@@ -76,30 +82,57 @@ while test -n "$1"; do
--english-only | -english-only) --english-only | -english-only)
f_english=YES f_english=YES
;; ;;
--enable-langs=*)
f_langs=`echo $1 | sed 's/^--enable-langs=//'`
;;
--enable-langs | -enable-langs) --enable-langs | -enable-langs)
shift; f_langs=$1 shift; f_langs=$1
;; ;;
--platform=*)
f_platform=`echo $1 | sed 's/^--platform=//'`
;;
--platform | -platform) --platform | -platform)
shift; f_platform=$1 shift; f_platform=$1
;; ;;
--make=*)
f_make=`echo $1 | sed 's/^--make=//'`
;;
--make | -make) --make | -make)
shift; f_make=$1 shift; f_make=$1
;; ;;
--dot=*)
f_dot=`echo $1 | sed 's/^--dot=//'`
;;
--dot | -dot) --dot | -dot)
shift; f_dot=$1 shift; f_dot=$1
;; ;;
--python=*)
f_python=`echo $1 | sed 's/^--python=//'`
;;
--python | -python) --python | -python)
shift; f_python=$1 shift; f_python=$1
;; ;;
--perl=*)
f_perl=`echo $1 | sed 's/^--perl=//'`
;;
--perl | -perl) --perl | -perl)
shift; f_perl=$1 shift; f_perl=$1
;; ;;
--flex=*)
f_flex=`echo $1 | sed 's/^--flex=//'`
;;
--flex | -flex) --flex | -flex)
shift; f_flex=$1 shift; f_flex=$1
;; ;;
--bison=*)
f_bison=`echo $1 | sed 's/^--bison=//'`
;;
--bison | -bison) --bison | -bison)
shift; f_bison=$1 shift; f_bison=$1
;; ;;
--install=*)
f_insttool=`echo $1 | sed 's/^--install=//'`
;;
--install | -install) --install | -install)
shift; f_insttool=$1 shift; f_insttool=$1
;; ;;
...@@ -122,6 +155,9 @@ while test -n "$1"; do ...@@ -122,6 +155,9 @@ while test -n "$1"; do
f_sqlite3=YES f_sqlite3=YES
f_sqlite3static=YES f_sqlite3static=YES
;; ;;
--sqlite3-path=*)
f_sqlite3_path=`echo $1 | sed 's/^--sqlite3-path=//'`
;;
--sqlite3-path | -sqlite3-path) --sqlite3-path | -sqlite3-path)
shift; f_sqlite3_path=$1 shift; f_sqlite3_path=$1
;; ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment