mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: wpa-supplicant-minimal: Cross compile.
* gnu/packages/admin.scm (wpa-supplicant-minimal)[arguments]: Use cc-for-target in make-flags. Adjust custom 'configure phase to use the correct pkg-config for the target.
This commit is contained in:
parent
8f447b1ae5
commit
8ec5adce41
1 changed files with 12 additions and 3 deletions
|
@ -1559,10 +1559,10 @@ (define-public wpa-supplicant-minimal
|
|||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(lambda _
|
||||
(chdir "wpa_supplicant")
|
||||
(copy-file "defconfig" ".config")
|
||||
(let ((port (open-file ".config" "al")))
|
||||
|
@ -1576,6 +1576,15 @@ (define-public wpa-supplicant-minimal
|
|||
CONFIG_LIBNL32=y
|
||||
CONFIG_READLINE=y\n" port)
|
||||
(close-port port))
|
||||
;; Make sure we have a pkg-config when cross compiling
|
||||
(substitute* '(".config"
|
||||
"Android.mk"
|
||||
"Makefile"
|
||||
"dbus/Makefile")
|
||||
(("pkg-config")
|
||||
(or (which "pkg-config")
|
||||
(which (string-append ,(%current-target-system)
|
||||
"-pkg-config")))))
|
||||
#t))
|
||||
(add-after 'install 'install-documentation
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
@ -1604,7 +1613,7 @@ (define (copy-man-page target)
|
|||
"wpa_supplicant.conf"))
|
||||
#t))))
|
||||
|
||||
#:make-flags (list "CC=gcc"
|
||||
#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
||||
(string-append "BINDIR=" (assoc-ref %outputs "out")
|
||||
"/sbin")
|
||||
(string-append "LIBDIR=" (assoc-ref %outputs "out")
|
||||
|
|
Loading…
Reference in a new issue