From 9518d3c77c82d42ea169801daa74e79e06cc16e6 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 21 Jan 2019 22:52:56 +0100 Subject: [PATCH] build-style/cmake: add missing space before closing bracket --- common/build-style/cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-style/cmake.sh b/common/build-style/cmake.sh index 4c93c8ba6a3..32f46f09d90 100644 --- a/common/build-style/cmake.sh +++ b/common/build-style/cmake.sh @@ -42,7 +42,7 @@ _EOF fi cmake_args+=" -DCMAKE_INSTALL_PREFIX=/usr" - if [ -n "$XBPS_DEBUG_PKGS"] && [ -z $nodebug ]; then + if [ -n "$XBPS_DEBUG_PKGS" ] && [ -z $nodebug ]; then cmake_args+=" -DCMAKE_BUILD_TYPE=RelWithDebInfo" else cmake_args+=" -DCMAKE_BUILD_TYPE=Release"