aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: de024aeaa5c225b5dc0dbea32d53d9b845ed9279 (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
#!/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\.,,;s,\.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\.,,;s,\.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
ocedure....Ludovic Courtès 2018-06-13tests: Honor the return value of 'start-service'....Clément Lassieur 2018-06-01tests: ssh: Use 'with-extensions'....Ludovic Courtès 2017-11-01tests: ssh: Make sure we can run executables from PATH....Marius Bakke 2017-07-23Merge branch 'master' into core-updatesLeo Famulari 2017-07-20tests: Use 'virtual-machine' records instead of monadic procedures....Ludovic Courtès 2017-07-18tests: ssh: Use 'guile-ssh'....Ludovic Courtès 2017-06-12marionette: Factorize 'wait-for-file'....Ludovic Courtès 2017-05-21tests: ssh: Use 'guile2.0-ssh'....Ludovic Courtès 2017-04-01tests: Introduce 'simple-operating-system' and use it....Ludovic Courtès 2017-03-21tests: ssh: Add a test for SFTP....Clément Lassieur 2017-03-21tests: ssh: Abstract session connection and authentication....Clément Lassieur 2016-10-03tests: ssh: Add Dropbear test....Ludovic Courtès 2016-10-03tests: ssh: Generalize....Ludovic Courtès 2016-10-03tests: Add 'openssh-service-type' test....Ludovic Courtès