mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: diffutils: Update to 3.12.
* gnu/packages/base.scm (diffutils): Update to 3.12. [arguments]<#:configure-flags>: When cross-compiling, add "ac_cv_func_strcasecmp=yes" "gl_cv_func_strcasecmp_works=yes". Change-Id: Icf49303e794479a0561e894ab88427c826d56cf3 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c4a100f3c6
commit
2a248d73ce
1 changed files with 8 additions and 2 deletions
|
@ -350,14 +350,14 @@ differences.")
|
||||||
(define-public diffutils
|
(define-public diffutils
|
||||||
(package
|
(package
|
||||||
(name "diffutils")
|
(name "diffutils")
|
||||||
(version "3.11")
|
(version "3.12")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/diffutils/diffutils-"
|
(uri (string-append "mirror://gnu/diffutils/diffutils-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07hkwbws3nhxqrsvsf01h6gl2q4pcfhf8s3hv3vqbmbxwdgz0gm7"))))
|
"1zbxf8vv7z18ypddwqgzj51n426k959fiv4wxbyl34b0r2gpz2vw"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -369,6 +369,12 @@ differences.")
|
||||||
#~'("XFAIL_TESTS=test-year2038")
|
#~'("XFAIL_TESTS=test-year2038")
|
||||||
#~'())
|
#~'())
|
||||||
|
|
||||||
|
#:configure-flags
|
||||||
|
#~#$(if (%current-target-system)
|
||||||
|
;; Fix for crosscompiling; on GNU system strcasecmp always works
|
||||||
|
#~'("ac_cv_func_strcasecmp=yes" "gl_cv_func_strcasecmp_works=yes")
|
||||||
|
#~'())
|
||||||
|
|
||||||
#:phases (if (system-hurd?)
|
#:phases (if (system-hurd?)
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'skip-tests
|
(add-after 'unpack 'skip-tests
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue