Displaying 1 result from an estimated 1 matches for "nonenon".
Did you mean:
none_on
2012 Sep 26
1
[LLVMdev] Add --program-prefix support with AC_CANONICAL_TARGET override.
...autoconf/configure.ac uses the AC_CANONICAL_TARGET.
This rule adds a test that can set program_prefix=target if
--program-prefix is not specified on the configure line.
test -n "$target_alias" &&
test "$program_prefix$program_suffix$program_transform_name" = \
NONENONEs,x,x, &&
program_prefix=${target_alias}-[]dnl
./configure --target=blah
results in
program_prefix=blah
--- Proposed patch
The original patch has been updated to ignore the test added by
AC_CANONICAL_TARGET. Program prefix can only be set from the command
line of configure.
./confi...