#!/bin/sh # Create the build system. set -e -x # Generate stubs for translations. langs=`find po/doc -type f -name 'guix-manual*.po' \ | sed -e 's,guix-manual\.,,' \ | xargs -n 1 -I{} basename {} .po` for lang in ${langs}; do if [ ! -e "doc/guix.${lang}.texi" ]; then echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi" echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi" # Ensure .po file is newer. touch "po/doc/guix-manual.${lang}.po" fi done langs=`find po/doc -type f -name 'guix-cookbook*.po' \ | sed -e 's,guix-cookbook\.,,' \ | xargs -n 1 -I{} basename {} .po` for lang in ${langs}; do if [ ! -e "doc/guix-cookbook.${lang}.texi" ]; then echo "@setfilename guix-cookbook.${lang}.info" > "doc/guix-cookbook.${lang}.texi" # Ensure .po file is newer. touch "po/doc/guix-cookbook.${lang}.po" fi done exec autoreconf -vfi nput type='submit' value='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-02-07 11:49:15 +0100
committerRicardo Wurmus <rekado@elephly.net>2023-02-07 15:04:12 +0100
commit08751bcebb5dfd38d0deea9f096e8e97f6774441 (patch)
tree72c35815662f5d4464a23118e91027e1b239c017 /gnu
parentca82f35ffcb86bda6d96077086423301eff53a80 (diff)
downloadguix-08751bcebb5dfd38d0deea9f096e8e97f6774441.tar.gz
guix-08751bcebb5dfd38d0deea9f096e8e97f6774441.zip
gnu: yoshimi: Use JACK 2.
* gnu/packages/music.scm (yoshimi)[inputs]: Replace jack-1 with jack-2.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/music.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 3a1889c805..87100c698d 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm