# HG changeset patch # User "Yann E. MORIN" # Date 1326753916 -3600 # Node ID 188d58cfe7cfc11317e2605bda33e83b1aa3dddd # Parent 8e8313e40f8a376f3c7ed75639335aa1ee171845 configure: fix kconfig option names In the process of converting to autoconf, the kconfig option were not properly translated. Fix that. Signed-off-by: "Yann E. MORIN" diff -r 8e8313e40f8a -r 188d58cfe7cf configure.ac --- a/configure.ac Tue Jan 17 00:37:59 2012 +0100 +++ b/configure.ac Mon Jan 16 23:45:16 2012 +0100 @@ -52,8 +52,8 @@ [ACX_SET_KCONFIG_OPTION], [AS_IF( [test -n "$$1"], - [kconfig_options="$kconfig_options $1=y"], - [kconfig_options="$kconfig_options $1"]) + [kconfig_options="$kconfig_options has_$1=y"], + [kconfig_options="$kconfig_options has_$1"]) ]) #-------------------------------------------------------------------- diff -r 8e8313e40f8a -r 188d58cfe7cf scripts/functions --- a/scripts/functions Tue Jan 17 00:37:59 2012 +0100 +++ b/scripts/functions Mon Jan 16 23:45:16 2012 +0100 @@ -400,11 +400,11 @@ # Build up the list of allowed tarball extensions # Add them in the prefered order; most preferred comes first CT_DoListTarballExt() { - if [ "${CT_CONFIGURE_has_xzutils}" = "y" ]; then + if [ "${CT_CONFIGURE_has_xz}" = "y" ]; then printf ".tar.xz\n" fi if [ "${CT_CONFIGURE_has_lzma}" = "y" \ - -o "${CT_CONFIGURE_has_xzutils}" = "y" ]; then + -o "${CT_CONFIGURE_has_xz}" = "y" ]; then printf ".tar.lzma\n" fi printf ".tar.bz2\n"