diff --git a/share/shpkg/shpkg.subr b/share/shpkg/shpkg.subr
index c6cec6a..94b7143 100644
--- a/share/shpkg/shpkg.subr
+++ b/share/shpkg/shpkg.subr
@@ -516,10 +516,12 @@ shpkg_configure () {
fi
if [ -x "${SHPKG_REPO_SRC_DIR}/configure" ]; then
( verbose 1 cd "${SHPKG_REPO_SRC_DIR}"
- verbose 1 ./configure --prefix "${SHPKG_PREFIX}"; )
+ verbose 1 ./configure --prefix "${SHPKG_PREFIX}"
+ )
elif [ -x "${SHPKG_REPO_SRC_DIR}/configure.sh" ]; then
( verbose 1 cd "${SHPKG_REPO_SRC_DIR}"
- verbose 1 ./configure.sh --prefix "${SHPKG_PREFIX}"; )
+ verbose 1 ./configure.sh --prefix "${SHPKG_PREFIX}"
+ )
elif [ -f "${SHPKG_REPO_SRC_DIR}/CMakeLists.txt" ]; then
verbose 1 cmake -S "${SHPKG_REPO_SRC_DIR}" -B "${SHPKG_OBJ_DIR}/${SHPKG_REPO_DIR}" -D CMAKE_INSTALL_PREFIX:PATH="${SHPKG_PREFIX}" -D BUILD_SHARED_LIBS=ON
fi