aboutsummaryrefslogtreecommitdiff
#!/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

autoreconf -vfi

# Replace Automake's build-aux/mdate-sh with build-aux/mdate-from-git, our
# own, reproducible version.
chmod +w build-aux/mdate-sh
rm -f build-aux/mdate-sh
ln -s mdate-from-git.scm build-aux/mdate-sh
.Efraim Flashner 2018-11-04gnu: debootstrap: Update to 1.0.109....Efraim Flashner 2018-09-21Add 'GNU Guix' comment to all (gnu packages) headers....Tobias Geerinckx-Rice 2018-09-21gnu: ubuntu-keyring: Update to 2018.09.18.1....Tobias Geerinckx-Rice 2018-07-14gnu: debootstrap: Update to 1.0.106....Efraim Flashner 2018-06-08gnu: debootstrap: Substitute chroot in 'patch-source' phase....Kei Kebreau 2018-06-06gnu: debootstrap: Update to 1.0.101....Tobias Geerinckx-Rice 2018-04-05gnu: debootstrap: Update to 1.0.95....Tobias Geerinckx-Rice 2018-03-12gnu: Add debootstrap....Efraim Flashner 2018-03-12gnu: Add ubuntu-keyring....Efraim Flashner 2018-03-12gnu: Add debian-archive-keyring....Efraim Flashner