aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: a47269d87f1d6fd27bbaf634ac7439b38b32cca3 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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\.,,' \
        | xargs -n 1 -I{} basename {} .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\.,,' \
        | xargs -n 1 -I{} basename {} .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
kages/maths.scm?id=9a6cf550bd2d22107bd60e6f8e85b3064403956c'>gnu: glpk: Don't build static library....Efraim Flashner 2020-12-17gnu: glpk: Update to 5.0....Efraim Flashner 2020-12-13gnu: veusz: Update to 3.3.1....Vinicius Monego 2020-12-12gnu: sleef: Update to 3.5.1....Vinicius Monego 2020-12-09gnu: dealii: Update to 9.2.0....Eric Bavier 2020-12-08gnu: Add tiny-bignum....Ryan Prior 2020-12-05gnu: superlu-dist: Update to 6.4.0....Eric Bavier 2020-12-05gnu: scotch: Update to 6.1.0...Eric Bavier 2020-12-01gnu: metamath: Update to 0.193....Tobias Geerinckx-Rice