diff options
author | Clément Lassieur <clement@lassieur.org> | 2019-12-12 01:06:14 +0100 |
---|---|---|
committer | Clément Lassieur <clement@lassieur.org> | 2019-12-12 01:14:47 +0100 |
commit | dcb7ce500bd025455982d74c3384c707f35bbb46 (patch) | |
tree | 3775531fc4147c84118c78e26add2bb0fd9874f4 /doc | |
parent | 6ffb0b4f6a99f6f1d601418af6e87566957c0031 (diff) | |
download | patches-dcb7ce500bd025455982d74c3384c707f35bbb46.tar patches-dcb7ce500bd025455982d74c3384c707f35bbb46.tar.gz |
doc: Add missing MKDIR call.
* doc/guix.texi (G-Expressions): Add missing MKDIR call.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 25efba118f..01980bf2d3 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -39,7 +39,7 @@ Copyright @copyright{} 2016, 2017, 2018, 2019 Jan Nieuwenhuizen@* Copyright @copyright{} 2016 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019 Christopher Baines@* -Copyright @copyright{} 2017, 2018 Clément Lassieur@* +Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* @@ -7457,6 +7457,7 @@ native package build: (gexp->derivation "vi" #~(begin (mkdir #$output) + (mkdir (string-append #$output "/bin")) (system* (string-append #+coreutils "/bin/ln") "-s" (string-append #$emacs "/bin/emacs") |