ref: c68a82d8fc423e43f95ecec4c53acebcfbb0390c
parent: 0039d0120e08bdcbe88dac66f65003d3ed5251b4
author: suzuki toshiya <[email protected]>
date: Sat Jan 15 08:21:32 EST 2011
Fix off-by-one bug in CFLAGS & LDFLAGS harmonizer. * builds/unix/configure.raw: Some important options that included in CFLAGS but not in LDFLAGS are copied to LDFLAGS, but the last option in CFLAGS was not checked.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-01-15 suzuki toshiya <[email protected]>
+
+ Fix off-by-one bug in CFLAGS & LDFLAGS harmonizer.
+
+ * builds/unix/configure.raw: Some important options that
+ included in CFLAGS but not in LDFLAGS are copied to
+ LDFLAGS, but the last option in CFLAGS was not checked.
+
2011-01-13 Werner Lemberg <[email protected]>
[raster] Add undocumented drop-out rule to the other bbox side also.
--- a/builds/unix/configure.raw
+++ b/builds/unix/configure.raw
@@ -250,7 +250,7 @@
save_config_args=$*
set dummy ${CFLAGS}
i=1
-while test $i -lt $#
+while test $i -le $#
do
c=$1