me
/
guix
Archived
1
0
Fork 0

gnu: chez-scheme: Properly identify system architecture.

* gnu/packages/chez.dcm (chez-scheme)[arguments]: Substitute `uname -m'
for `uname -a' in configure, allowing proper identification of the
machine architecture.
master
Efraim Flashner 2016-11-20 22:18:49 +02:00
parent e48fcd7b8d
commit 7ceee88c43
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 4 additions and 0 deletions

View File

@ -100,6 +100,10 @@
'())))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-processor-detection
(lambda _ (substitute* "configure"
(("uname -a") "uname -m"))
#t))
;; Adapt the custom 'configure' script.
(replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)