mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: xl2tpd: Fix build.
* gnu/packages/vpn.scm (xl2tpd)[arguments]: Substitute hardcoded pppd path instead of trying to set CFLAGS variable.
This commit is contained in:
parent
6e31d6f3c4
commit
0919d6148f
1 changed files with 4 additions and 4 deletions
|
@ -648,10 +648,10 @@ (define-public xl2tpd
|
|||
(delete 'configure) ;no configure script
|
||||
(add-before 'build 'setup-environment
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(setenv "CFLAGS"
|
||||
(string-append "-DPPPD=\""
|
||||
(assoc-ref inputs "ppp")
|
||||
"/sbin/pppd\""))
|
||||
(substitute* "l2tp.h"
|
||||
(("/usr/sbin/pppd")
|
||||
(string-append (assoc-ref inputs "ppp")
|
||||
"/sbin/pppd")))
|
||||
(setenv "KERNELSRC"
|
||||
(assoc-ref inputs "linux-libre-headers"))
|
||||
#t)))
|
||||
|
|
Loading…
Reference in a new issue