gnu: rust-git2: Adjust inputs.
[jackhill/guix/guix.git] / bootstrap
... / ...
CommitLineData
1#!/bin/sh
2# Create the build system.
3
4set -e -x
5
6# Generate stubs for translations.
7langs=`find po/doc -type f -name 'guix-manual*.po' \
8 | sed -e 's,.*/guix-manual\.,,;s,\.po$,,'`
9for lang in ${langs}; do
10 if [ ! -e "doc/guix.${lang}.texi" ]; then
11 echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi"
12 echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi"
13 # Ensure .po file is newer.
14 touch "po/doc/guix-manual.${lang}.po"
15 fi
16done
17langs=`find po/doc -type f -name 'guix-cookbook*.po' \
18 | sed -e 's,.*/guix-cookbook\.,,;s,\.po$,,'`
19for lang in ${langs}; do
20 if [ ! -e "doc/guix-cookbook.${lang}.texi" ]; then
21 echo "@setfilename guix-cookbook.${lang}.info" > "doc/guix-cookbook.${lang}.texi"
22 # Ensure .po file is newer.
23 touch "po/doc/guix-cookbook.${lang}.po"
24 fi
25done
26
27exec autoreconf -vfi