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.
This commit is contained in:
suzuki toshiya 2011-01-15 13:21:32 +09:00
parent 0039d0120e
commit c68a82d8fc
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2011-01-15 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
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 <wl@gnu.org>
[raster] Add undocumented drop-out rule to the other bbox side also.

View File

@ -250,7 +250,7 @@ fi
save_config_args=$*
set dummy ${CFLAGS}
i=1
while test $i -lt $#
while test $i -le $#
do
c=$1