aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: a47269d87f1d6fd27bbaf634ac7439b38b32cca3 (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
2022-04-11gnu: hwloc: Remove input labels.Ludovic Courtès 2022-04-11gnu: hwloc@1: Update to 1.11.13.Philippe SWARTVAGHER 2022-03-29gnu: openmpi: Update to 4.1.2Philippe SWARTVAGHER 2022-03-25gnu: hwloc: Update to 2.7.1.Philippe SWARTVAGHER 2022-01-17gnu: mpich: Remove input labels and trailing #t in phases.Ludovic Courtès 2022-01-17gnu: mpich: Allow compilation with GCC 10.Ludovic Courtès 2021-12-17gnu: hwloc: Update to 2.7.0.Philippe SWARTVAGHER 2021-12-13gnu: Simplify package inputs.Ludovic Courtès 2021-12-05Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus 2021-12-02gnu: Add openmpi-c++.Ricardo Wurmus