Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
bc7e6301
Commit
bc7e6301
authored
Jan 26, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 722786 - configure --prefix=/opt/foo not accepted
parent
62379ff8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
configure
configure
+36
-0
No files found.
configure
View file @
bc7e6301
...
@@ -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
;;
;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment