diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-04-29 12:04:13 +0300 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-14 12:05:25 +0100 |
commit | b5e112167721c59906fb2f274c09156e324c7a1e (patch) | |
tree | d936a64198f499dba66e06db2c3087227c8cbd41 /gnu | |
parent | 61140300c20609f540029e30b72b7bf466f259cd (diff) | |
download | guix-b5e112167721c59906fb2f274c09156e324c7a1e.tar.gz guix-b5e112167721c59906fb2f274c09156e324c7a1e.zip |
gnu: guile-lib: Remove "strip" phase.
* gnu/packages/guile-xyz.scm (guile-lib) [arguments]: Remove "strip" phase.
Change-Id: I6158bdb58555be4e84a2571a2a6e59eb23d39abf
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index efe345aa66..aab9a9cbec 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2771,6 +2771,7 @@ library.") '(#:make-flags '("GUILE_AUTO_COMPILE=0") ;placate guild warnings #:phases (modify-phases %standard-phases + (delete 'strip) (add-before 'configure 'patch-module-dir (lambda _ (substitute* "src/Makefile.in" |