mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: iproute: Fix building on powerpc64le-linux.
* gnu/packages/linux.scm (iproute)[arguments]: When building for powerpc64le-linux adjust the flags passed to the C compiler. Change-Id: I7dd4a8282fa59d16ce629f185069107cfd89a3a4
This commit is contained in:
parent
4c0e7c296d
commit
329a0dcc71
1 changed files with 4 additions and 1 deletions
|
@ -4258,7 +4258,10 @@ that the Ethernet protocol is much simpler than the IP protocol.")
|
|||
(string-append "HDRDIR=" out "/include")
|
||||
(string-append "SBINDIR=" out "/sbin")
|
||||
(string-append "CONFDIR=" out "/etc")
|
||||
(string-append "MANDIR=" out "/share/man")))
|
||||
(string-append "MANDIR=" out "/share/man")
|
||||
#$@(if (target-ppc64le?)
|
||||
'("CCOPTS=-O2 -pipe -Wno-incompatible-pointer-types")
|
||||
'())))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue