diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-04 21:19:54 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-05 01:36:22 +0200 |
commit | 226221df6fd93c29960b43243cf881c65e3baad5 (patch) | |
tree | f6ef59df60251c0178b5f882f3b529bd23cd275f /gnu | |
parent | bbf60f86d5b57ee085cd701ccf491c075f329de7 (diff) |
gnu: wireguard-tools: Fix doc installation.
* gnu/packages/vpn.scm (wireguard-tools)[arguments]: Add missing out.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/vpn.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 6d0d10d60f..d707d07ce8 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -1046,8 +1046,8 @@ WireGuard was added to Linux 5.6.") (delete 'configure) ; no configure script (add-after 'install 'install-contrib-docs (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out")) - (doc "/share/doc/wireguard-tools")) + (let* ((out (assoc-ref outputs "out")) + (doc (string-append out "/share/doc/wireguard-tools"))) (copy-recursively "contrib/" doc)))) (add-after 'install 'wrap-wg-quick (lambda* (#:key inputs outputs #:allow-other-keys) |