diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-03-16 13:11:28 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-03-16 13:11:28 +0200 |
commit | 4cacd87e4d4b72945c19e993eef7af387fce957c (patch) | |
tree | 2f54fc1752941a849fa92c3f3a8bbb195e54b754 /gnu/packages/code.scm | |
parent | 56f76b08be97549dcc409b090186103413dc4e4b (diff) | |
parent | 0f03c5316819385f3a4047ae50736b3db760f451 (diff) | |
download | guix-4cacd87e4d4b72945c19e993eef7af387fce957c.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/code.scm')
-rw-r--r-- | gnu/packages/code.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index f91fdab153..3aaa754c09 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -271,13 +271,13 @@ features that are not supported by the standard @code{stdio} implementation.") (replace 'install (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (mkdir-p (string-append out "/lib")) - (mkdir (string-append out "/include")) - (copy-file "src/withershins.hpp" - (string-append out "/include/withershins.hpp")) - (copy-file "src/libwithershins.a" - (string-append out "/lib/libwithershins.a"))) + (let* ((out (assoc-ref outputs "out")) + (include (string-append out "/include")) + (lib (string-append out "/lib"))) + (mkdir-p include) + (install-file "src/withershins.hpp" include) + (mkdir-p lib) + (install-file "src/libwithershins.a" lib)) #t))))) (home-page "https://github.com/cameronwhite/withershins") (inputs |