gnu: pciutils: Explicity declare the _FILE_OFFSET_BITS we want.

* gnu/packages/pciutils.scm (pciutils)[arguments]<#:phases>[configure]: Pass
CFLAGS.
This commit is contained in:
Danny Milosavljevic 2020-10-04 19:38:36 +02:00
parent d1edfd01b8
commit 4c11d9ef24
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -87,7 +87,10 @@ (define-public pciutils
(("^IDSDIR=.*$")
;; Installation directory of 'pci.ids.gz'.
"IDSDIR = $(SHAREDIR)/hwdata\n"))
"IDSDIR = $(SHAREDIR)/hwdata\n")
(("^OPT=")
"OPT?="))
(setenv "OPT" (getenv "CFLAGS"))
#t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)