diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-09-03 15:35:23 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-09-03 18:58:47 +0200 |
commit | cbd7c65709b1195de9196772c7f8ae6863797b35 (patch) | |
tree | 50c53641d126b4ccf478a8422e2a2ce37e7fddae | |
parent | 84aa18ff7ff06a2738187d5911dafeb3df39a679 (diff) | |
download | guix-cbd7c65709b1195de9196772c7f8ae6863797b35.tar.gz guix-cbd7c65709b1195de9196772c7f8ae6863797b35.zip |
gnu: ppp: Return #t from all phases.
* gnu/packages/samba.scm (ppp)[arguments]: Return #t from phase.
-rw-r--r-- | gnu/packages/samba.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index 345655d584..a6d6ee30cd 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -417,7 +417,8 @@ key-value pair databases and a real LDAP database.") (("/usr/include/crypt\\.h") (string-append libc "/include/crypt.h")) (("/usr/include/pcap-bpf.h") - (string-append libpcap "/include/pcap-bpf.h"))))))))) + (string-append libpcap "/include/pcap-bpf.h"))) + #t)))))) (inputs `(("libpcap" ,libpcap))) (synopsis "Implementation of the Point-to-Point Protocol") |