Skip to content
Snippets Groups Projects
Commit a153ff80 authored by Mark H Weaver's avatar Mark H Weaver
Browse files

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.
parent be234128
No related branches found
No related tags found
No related merge requests found
......@@ -920,10 +920,12 @@ (define (apply-patch file)
;; Pretend we have everything...
(system "yes | make config")
;; ... except we don't have libdnet, so remove that
;; definition.
;; ... except for the things we don't have.
;; 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")
(("^.*HAVE_AFDECnet.*$") ""))))
(("^.*HAVE_(AFDECnet|HWSTRIP|HWTR)[ =]1.*$") ""))))
(alist-cons-after
'install 'remove-redundant-commands
(lambda* (#:key outputs #:allow-other-keys)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment