config-ml.in: don't handle --enable-shared and --enable-static.
2008-05-14 Rafael Espindola <espindola@google.com> * config-ml.in: don't handle --enable-shared and --enable-static. From-SVN: r135300
This commit is contained in:
parent
84b8030f0e
commit
61ab1651b9
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2008-05-14 Rafael Espindola <espindola@google.com>
|
||||||
|
|
||||||
|
* config-ml.in: don't handle --enable-shared and --enable-static.
|
||||||
|
|
||||||
2008-05-10 Richard Sandiford <rdsandiford@googlemail.com>
|
2008-05-10 Richard Sandiford <rdsandiford@googlemail.com>
|
||||||
|
|
||||||
* MAINTAINERS: Update my email address.
|
* MAINTAINERS: Update my email address.
|
||||||
|
|
|
@ -135,7 +135,12 @@ do
|
||||||
*) optarg=yes ;;
|
*) optarg=yes ;;
|
||||||
esac
|
esac
|
||||||
enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
|
enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
|
||||||
eval $enableopt="$optarg"
|
# enable_shared and enable_static are handled by configure.
|
||||||
|
# Don't undo its work.
|
||||||
|
case $enableopt in
|
||||||
|
enable_shared | enable_static) ;;
|
||||||
|
*) eval $enableopt="$optarg" ;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
--norecursion | --no-recursion)
|
--norecursion | --no-recursion)
|
||||||
ml_norecursion=yes
|
ml_norecursion=yes
|
||||||
|
|
Loading…
Add table
Reference in a new issue