#!/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\.,,;s,\.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\.,,;s,\.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 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-06-13 01:05:26 +0200
committerRicardo Wurmus <rekado@elephly.net>2020-06-13 01:20:01 +0200
commit4091eae2bce44c7fd4a5d34dbf9771b9268dfde9 (patch)
treea6c0e5add61d79652eaf262484ab5d119338db64
parentb56a3462adcbb2770df3f3612a08b4fe1dcbce41 (diff)
downloadguix-4091eae2bce44c7fd4a5d34dbf9771b9268dfde9.tar.gz
guix-4091eae2bce44c7fd4a5d34dbf9771b9268dfde9.zip
gnu: r-multiassayexperiment: Update to 1.14.0.
* gnu/packages/bioconductor.scm (r-multiassayexperiment): Update to 1.14.0.
Diffstat
-rw-r--r--gnu/packages/bioconductor.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index d531777b16..e2af1cbd4b 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm