From 0c63a75dfb79ae53a0cd5c1f5889dc3e7126e899 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 18 Jun 2008 00:21:56 +0200 Subject: [PATCH] * config-ml.in: don't handle --enable-shared and --enable-static. Signed-off-by: Ralf Wildenhues --- ChangeLog | 4 ++++ lib/config-ml.in | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9fd8d92ef..cfc19a413 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-06-18 Rafael Espindola + + * config-ml.in: don't handle --enable-shared and --enable-static. + 2008-06-18 Ralf Wildenhues * lib/am/inst-vars.am (am__install_max): New variable. diff --git a/lib/config-ml.in b/lib/config-ml.in index 3ae19743b..f2497ada4 100644 --- a/lib/config-ml.in +++ b/lib/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 -- 2.47.2