#!/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 ption value='koszko-scripts'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2024-08-03 01:53:27 +0200
committerLudovic Courtès <ludo@gnu.org>2024-08-31 10:45:44 +0200
commitb5e9be788f287adbdee12caa0beae3612881e364 (patch)
tree120813603b63261044a16d02d7ce5044648fa229
parentdb082a527e68654222c89e6a7ccf19592479b978 (diff)
downloadguix-b5e9be788f287adbdee12caa0beae3612881e364.tar.gz
guix-b5e9be788f287adbdee12caa0beae3612881e364.zip
gnu: texlive-revtex4-1: Fix build.
* gnu/packages/tex.scm (texlive-revtex4-1)[arguments]<#:phases>: Fix regexp matching TEXLIVE-REVTEX source name. Change-Id: Ideea61ed97d4ea544554faa02152fea6d0bd1947
Diffstat