From 17061e3aae882fb5ebb73a620fab720100623d10 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 26 Feb 2014 20:44:42 -0500 Subject: lib/buildsystem/*.sh: Fix more [ commands. --- (limited to 'lib/buildsystem/kbuild.sh') diff --git a/lib/buildsystem/kbuild.sh b/lib/buildsystem/kbuild.sh index e11daf1..5525e86 100644 --- a/lib/buildsystem/kbuild.sh +++ b/lib/buildsystem/kbuild.sh @@ -85,11 +85,11 @@ _oh_kbuild_update_target() mkdir -p "${_OH_BUILDSYSTEM_BUILD_DIR}" cd "${_OH_BUILDSYSTEM_BUILD_DIR}" - if [ "x${_OH_BUILDSYSTEM_BUILD_TARGET+set}" = 'xset' ]; then + if [ "x${_OH_BUILDSYSTEM_BUILD_TARGET}" != 'x' ]; then make ARCH="${arch}" CROSS_COMPILE="${OPK_TOOL_PREFIX}" \ "${@}" "${_OH_BUILDSYSTEM_BUILD_TARGET}" rc=${?} - elif [ "x${target+set}" = 'xset' ]; then + elif [ "x${target}" != 'x' ]; then make ARCH="${arch}" CROSS_COMPILE="${OPK_TOOL_PREFIX}" \ "${@}" "${target}" rc=${?} -- cgit v0.9.1