gnu: net-tools: Adapt to linux-libre-headers-3.14.x.
* gnu/packages/linux.scm (net-tools): Remove the HAVE_HWSTRIP and HAVE_HWTR options from the configuration.
This commit is contained in:
parent
be23412848
commit
a153ff80c8
|
@ -920,10 +920,12 @@ manpages.")
|
||||||
;; Pretend we have everything...
|
;; Pretend we have everything...
|
||||||
(system "yes | make config")
|
(system "yes | make config")
|
||||||
|
|
||||||
;; ... except we don't have libdnet, so remove that
|
;; ... except for the things we don't have.
|
||||||
;; definition.
|
;; HAVE_AFDECnet requires libdnet, which we don't have.
|
||||||
|
;; HAVE_HWSTRIP and HAVE_HWTR require kernel headers
|
||||||
|
;; that have been removed.
|
||||||
(substitute* '("config.make" "config.h")
|
(substitute* '("config.make" "config.h")
|
||||||
(("^.*HAVE_AFDECnet.*$") ""))))
|
(("^.*HAVE_(AFDECnet|HWSTRIP|HWTR)[ =]1.*$") ""))))
|
||||||
(alist-cons-after
|
(alist-cons-after
|
||||||
'install 'remove-redundant-commands
|
'install 'remove-redundant-commands
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue