From ccd66358b9c503a7499845f6bb4739119b1f9b14 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 11 Dec 2012 21:19:34 -0600 Subject: [PATCH] fixed SF #597: Configure script ignores cflags --- CHANGELOG | 1 + configure | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index ebb3f8d65..96c009cff 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -16,6 +16,7 @@ Release 1.5.0 (2012-12-17) - TypeHandler::prepare() now takes const-reference - fixed GH #27: Poco::URI::decode() doesn't properly handle '+' - fixed GH #31: JSON implementation bug +- fixed SF #597: Configure script ignores cflags Release 1.5.0 (2012-10-14) ========================== diff --git a/configure b/configure index 8951f982b..df4da5781 100755 --- a/configure +++ b/configure @@ -150,7 +150,7 @@ while [ $# -ge 1 ]; do odbcinclude="`echo ${1} | awk '{print substr($0,16)}'`" ;; --cflags=*) - cflags="`echo ${1} | awk '{print substr($0,10)}'`" ;; + flags="`echo ${1} | awk '{print substr($0,10)}'`" ;; --no-samples) samples="" ;;