gnu: signify: Update to 26.
[guix.git] / bootstrap
blobc0b5af7677ab01816152ff59a99c4c0e8e2eab93
1 #!/bin/sh
2 # Create the build system.
4 set -e -x
6 # Generate stubs for translations.
7 langs=`find po/doc -type f -name '*.po' \
8 | sed -e 's,guix-manual\.,,' \
9 | xargs -n 1 -I{} basename {} .po`
10 for lang in ${langs}; do
11 if [ ! -e "doc/guix.${lang}.texi" ]; then
12 echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi"
13 echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi"
14 # Ensure .po file is newer.
15 touch "po/doc/guix-manual.${lang}.po"
17 done
19 exec autoreconf -vfi