gnu: Add emacs-motif.
[jackhill/guix/guix.git] / bootstrap
CommitLineData
b49ffe2d 1#!/bin/sh
9ac97e83 2# Create the build system.
b49ffe2d
LC
3
4set -e -x
9ca5ff88
MÁAV
5
6# Generate stubs for translations.
7bc46ecc 7langs=`find po/doc -type f -name 'guix-manual*.po' \
bd02e50a 8 | sed -e 's,.*/guix-manual\.,,;s,\.po$,,'`
9ca5ff88
MÁAV
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
7bc46ecc 17langs=`find po/doc -type f -name 'guix-cookbook*.po' \
bd02e50a 18 | sed -e 's,.*/guix-cookbook\.,,;s,\.po$,,'`
7bc46ecc
RW
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
9ca5ff88 26
b49ffe2d 27exec autoreconf -vfi