diff --git a/share/shpkg/shpkg.subr b/share/shpkg/shpkg.subr
index f766d45..59331d7 100644
--- a/share/shpkg/shpkg.subr
+++ b/share/shpkg/shpkg.subr
@@ -525,10 +525,10 @@ 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