From 488192d79db9fb43b40bd089bbb7f5e42c116921 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 29 Oct 2025 15:44:59 +0100 Subject: [PATCH] bugfix: distclean before configure in module recipe --- recipes/040-modules | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes/040-modules b/recipes/040-modules index eb92ee8..b8e6aae 100755 --- a/recipes/040-modules +++ b/recipes/040-modules @@ -9,6 +9,9 @@ DOWNLOAD_URL="https://amas.web.psi.ch/Downloads/$P/$P-$V.tar.bz2" source "$(dirname "$0")/librecipes.bash" +cd "${SRC_DIR}" +make distclean + #--- # configure mkdir -p "${BUILD_DIR}" && cd "$_" || exit ${PB_ERR_SYSTEM} @@ -24,6 +27,7 @@ case $(uname -s) in exit ${PB_ERR_SYSTEM} ;; esac + CPPFLAGS="-DUSE_INTERP_ERRORLINE" \ "${SRC_DIR}"/configure \ --prefix="${PREFIX}" \