Commit 5127a9e470a62c90c067b7602a43aaf4a183a143

Thomas de Grivel 2023-02-18T17:54:00

wip ci

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