From 327f030ef5fdab3ed9bb428377e54ada76a9a5d3 Mon Sep 17 00:00:00 2001 From: niesongsong Date: Mon, 12 May 2014 10:56:36 +0800 Subject: [PATCH] Update options.sh fix options bug like: --prefix=../bin --- trunk/auto/options.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/auto/options.sh b/trunk/auto/options.sh index b5263247b..c43e55b4b 100755 --- a/trunk/auto/options.sh +++ b/trunk/auto/options.sh @@ -243,7 +243,7 @@ function parse_user_option_to_value_and_option() { case "$option" in -*=*) value=`echo "$option" | sed -e 's|[-_a-zA-Z0-9/]*=||'` - option=`echo "$option" | sed -e 's|=[-_a-zA-Z0-9/]*||'` + option=`echo "$option" | sed -e 's|=[-_a-zA-Z0-9/.]*||'` ;; *) value="" ;; esac