From e931553f1b8126fb1e6d907d34115b130b359eac Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Mon, 23 Feb 2026 18:47:21 -0500 Subject: [PATCH] fix(steps-guix): bootstrap guile-gcrypt configure with autoreconf and out-of-tree build --- steps-guix/guile-gcrypt-0.5.0/pass1.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/steps-guix/guile-gcrypt-0.5.0/pass1.sh b/steps-guix/guile-gcrypt-0.5.0/pass1.sh index 20546ed1..3230678c 100644 --- a/steps-guix/guile-gcrypt-0.5.0/pass1.sh +++ b/steps-guix/guile-gcrypt-0.5.0/pass1.sh @@ -2,6 +2,7 @@ src_prepare() { default + autoreconf -fi } src_configure() { @@ -11,10 +12,13 @@ src_configure() { libgcrypt_prefix="$(PKG_CONFIG_PATH="${pkg_config_path}" pkg-config --variable=prefix libgcrypt)" libgcrypt_libdir="$(PKG_CONFIG_PATH="${pkg_config_path}" pkg-config --variable=libdir libgcrypt)" + mkdir -p build + cd build + PATH="${PREFIX}/bin:/usr/bin:/bin" \ PKG_CONFIG_PATH="${pkg_config_path}" \ LD_LIBRARY_PATH="${libgcrypt_libdir}:${LIBDIR}:${PREFIX}/lib:${LD_LIBRARY_PATH}" \ - ./configure \ + ../configure \ --prefix="${PREFIX}" \ --libdir="${LIBDIR}" \ --host="${host_triplet}" \