Commit e1e013c9a0dd0b387aea969e1fdd00f6caf0d589

Thomas de Grivel 2023-02-18T16:47:57

wip ci

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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