Commit 0166ebf294e61f1abe712f1c75f0052643d2def3

Thomas de Grivel 2023-02-18T15:13:26

wip ci

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/share/shpkg/shpkg.subr b/share/shpkg/shpkg.subr
index d51ddfb..2a15958 100644
--- a/share/shpkg/shpkg.subr
+++ b/share/shpkg/shpkg.subr
@@ -517,7 +517,9 @@ shpkg_configure () {
             if [ -x "${SHPKG_REPO_SRC_DIR}/configure" ]; then
                 ( verbose 1 cd "${SHPKG_REPO_SRC_DIR}"
                   verbose 1 ./configure --prefix "${SHPKG_PREFIX}"
+                  echo $? >&2
                   exit $?; )
+                  echo $? >&2
             elif [ -x "${SHPKG_REPO_SRC_DIR}/configure.sh" ]; then
                 ( verbose 1 cd "${SHPKG_REPO_SRC_DIR}"
                   verbose 1 ./configure.sh --prefix "${SHPKG_PREFIX}"