Lukas Gradl <lgr...@openmailbox.org> skribis: > From ecafdf21a654c97fa9adb2c382c431c297a3fee0 Mon Sep 17 00:00:00 2001 > From: Lukas Gradl <lgr...@openmailbox.org> > Date: Tue, 9 Aug 2016 16:43:36 -0500 > Subject: [PATCH 03/10] gnu: Add gsm. > > * gnu/packages/audio.scm (gsm): New variable.
Applied with small changes: > + (let ((out (assoc-ref %outputs "out"))) > + (begin > + (system* "mv" (string-append out "/inc") > + (string-append out "/include")) I removed ‘begin’ and used ‘rename-file’ here. > + (mkdir-p (string-append out "/include/gsm")) > + (copy-recursively > + "inc" (string-append out "/include/gsm")))))) I noticed that this leads to a situation where we have both include/gsm.h and include/gsm/gsm.h as identical file. I suppose the former is unnecessary? Thanks! Ludo’.