mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge remote-tracking branch 'origin/master' into core-updates
Conflicts: doc/guix.texi gnu/local.mk gnu/packages/admin.scm gnu/packages/base.scm gnu/packages/chromium.scm gnu/packages/compression.scm gnu/packages/databases.scm gnu/packages/diffoscope.scm gnu/packages/freedesktop.scm gnu/packages/gnome.scm gnu/packages/gnupg.scm gnu/packages/guile.scm gnu/packages/inkscape.scm gnu/packages/llvm.scm gnu/packages/openldap.scm gnu/packages/pciutils.scm gnu/packages/ruby.scm gnu/packages/samba.scm gnu/packages/sqlite.scm gnu/packages/statistics.scm gnu/packages/syndication.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/version-control.scm gnu/packages/xml.scm guix/build-system/copy.scm guix/scripts/home.scm
This commit is contained in:
commit
4cf1acc7f3
740 changed files with 619028 additions and 314277 deletions
|
@ -44,7 +44,7 @@
|
|||
(arguments
|
||||
;; 'sexp-conv' and other programs need to have their RUNPATH point to
|
||||
;; $libdir, which is not the case by default. Work around it.
|
||||
'(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
||||
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib"))
|
||||
#:phases (modify-phases %standard-phases
|
||||
|
@ -59,7 +59,13 @@
|
|||
(rename-file ar (string-append
|
||||
slib "/"
|
||||
(basename ar))))
|
||||
(find-files "." "\\.a$")))
|
||||
(find-files
|
||||
"."
|
||||
,(if (target-mingw?)
|
||||
'(lambda (filename _)
|
||||
(and (string-suffix? ".a" filename)
|
||||
(not (string-suffix? ".dll.a" filename))))
|
||||
"\\.a$"))))
|
||||
#t))))))
|
||||
(outputs '("out" "debug" "static"))
|
||||
(native-inputs (list m4))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue