On 07/03/2015 08:20 PM, Ken McDonell wrote:
./configure: line 3943: test: too many arguments
./configure: line 3971: test: too many arguments
./configure: line 4011: test: too many arguments
lines like this ... in configure.ac are not syntactically correct, expecially
when $cc_is_gcc appears to be undefined.
test $cc_is_gcc -a "x$enable_ssp" != xno
I guess the minimal patch would be to quote $cc_is_gcc e.g.
test "$cc_is_gcc" -a "x$enable_ssp" != xno
so the first part of the test will only succeed if $cc_is_gcc is defined.
Not sure where this worked, but probably needs guidance from Nathan as to the
intent.
not sure where/how $cc_is_gcc became undefined, is that only some platforms?
In any case, I looked over your patch and it looks OK, superficially anyway,
so I'll merge that in from your tree and we'll get Nathan to demystify when he
gets back.
Cheers
-- Mark
|