diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-08-26 04:54:31 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-08-26 05:02:51 +0200 |
commit | 3ef664d08234814176059d619f27ab188cbde267 (patch) | |
tree | 22864d2dc87af77a8ee8f70348809378d02f6dee /gnu/packages/audio.scm | |
parent | 947748764539c0e8421b12c458db13fb3a38033b (diff) | |
download | guix-3ef664d08234814176059d619f27ab188cbde267.tar guix-3ef664d08234814176059d619f27ab188cbde267.tar.gz |
gnu: snd: Don't install the licence twice.
* gnu/packages/audio.scm (snd)[arguments]: Let the build system install
‘COPYING’ once.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 292c9afc1f..af2951fcd5 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -3410,7 +3410,7 @@ on the ALSA software PCM plugin.") (for-each (lambda (f) (install-file f doc)) - (find-files "." "\\.html$|COPYING")) + (find-files "." "\\.html$")) (copy-recursively "pix" (string-append doc "/pix")) #t)))))) (native-inputs |