From 7715b0b2c0865410648079eaf1bef27474bdf408 Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:14:24 -0400 Subject: [PATCH] fix(guile-lzlib): remove useless checking --- steps-guix/guile-lzlib-0.3.0/pass1.sh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/steps-guix/guile-lzlib-0.3.0/pass1.sh b/steps-guix/guile-lzlib-0.3.0/pass1.sh index 53e79dc2..7590ea7d 100644 --- a/steps-guix/guile-lzlib-0.3.0/pass1.sh +++ b/steps-guix/guile-lzlib-0.3.0/pass1.sh @@ -30,19 +30,5 @@ src_install() { } src_postprocess() { - local guile_site_path guile_core_site guile_site_ccache guile_core_ccache - default_src_postprocess - - guile_site_path="${DESTDIR}${PREFIX}/share/guile/site/3.0" - guile_core_site="${PREFIX}/share/guile/3.0" - guile_site_ccache="${DESTDIR}${LIBDIR}/guile/3.0/site-ccache" - guile_core_ccache="${LIBDIR}/guile/3.0/ccache" - - PATH="${DESTDIR}${PREFIX}/bin:${PREFIX}/bin:/usr/bin:/bin" \ - GUILE_LOAD_PATH="${guile_site_path}:${guile_core_site}" \ - GUILE_LOAD_COMPILED_PATH="${guile_site_ccache}:${guile_core_ccache}" \ - GUILE_SYSTEM_PATH="${guile_site_path}:${guile_core_site}" \ - GUILE_SYSTEM_COMPILED_PATH="${guile_site_ccache}:${guile_core_ccache}" \ - "${DESTDIR}${PREFIX}/bin/guile" -c '(use-modules (lzlib)) (display "lzlib-module-ok\n")' }