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:
parent
0039d0120e
commit
c68a82d8fc
@ -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.
|
||||
|
@ -250,7 +250,7 @@ fi
|
||||
save_config_args=$*
|
||||
set dummy ${CFLAGS}
|
||||
i=1
|
||||
while test $i -lt $#
|
||||
while test $i -le $#
|
||||
do
|
||||
c=$1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user