diff options
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | scripts/functions | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7f49c0dd..1285f81c 100644 --- a/configure.ac +++ b/configure.ac @@ -52,8 +52,8 @@ AC_DEFUN( [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 --git a/scripts/functions b/scripts/functions index 1ec00805..95b74156 100644 --- a/scripts/functions +++ b/scripts/functions @@ -400,11 +400,11 @@ CT_SetLibPath() { # 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" |