gnu: openssl: Build fix for the Hurd.
* gnu/packages/tls.scm (openssl-3.0)[arguments]: When building on the Hurd, add "hurd-x86" to #:configure-flags.
parent
da9e4fd434
commit
378766dd2e
|
@ -585,7 +585,12 @@ OpenSSL for TARGET."
|
||||||
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
||||||
(setenv "HASHBANGPERL"
|
(setenv "HASHBANGPERL"
|
||||||
(search-input-file (or native-inputs inputs)
|
(search-input-file (or native-inputs inputs)
|
||||||
"/bin/perl"))))))))
|
"/bin/perl"))))))
|
||||||
|
((#:configure-flags flags #~'())
|
||||||
|
(if (system-hurd?)
|
||||||
|
#~(append #$flags '("hurd-x86")) ;must not be used when
|
||||||
|
;cross-compiling!
|
||||||
|
flags))))
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public openssl openssl-3.0)
|
(define-public openssl openssl-3.0)
|
||||||
|
|
Reference in New Issue