diff options
author | Rafael Avila de Espindola <espindola@google.com> | 2008-05-14 17:15:51 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2008-05-14 17:15:51 +0000 |
commit | 61ab1651b91da9c63f78ea93b89117867188979d (patch) | |
tree | 1e73eac0f526de693bf5977a4ee72cfe345c95a3 /config-ml.in | |
parent | 84b8030f0eec58ad1aee8f9fc500f3f86f777ef8 (diff) | |
download | gcc-61ab1651b91da9c63f78ea93b89117867188979d.tar.gz |
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
Diffstat (limited to 'config-ml.in')
-rw-r--r-- | config-ml.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config-ml.in b/config-ml.in index 3ae19743b76..f2497ada4f8 100644 --- a/config-ml.in +++ b/config-ml.in @@ -135,7 +135,12 @@ do *) optarg=yes ;; esac 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) ml_norecursion=yes |