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
t/tests/store.scm?id=3a317f7476f8c6012e166ff9f340f861938721c9'>Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-11-16daemon: Do not deduplicate files smaller than 8 KiB....Ludovic Courtès 2021-10-31Merge remote-tracking branch 'origin/master' into core-updates-frozenEfraim Flashner 2021-10-28store: 'map/accumulate-builds' handler checks the store received....Ludovic Courtès 2021-09-17Merge branch 'master' into core-updates-frozen...Marius Bakke 2021-09-15store: 'map/accumulate-builds' processes the whole list in case of cutoff....Ludovic Courtès 2021-07-05tests: Fix typo in 'tests/store.scm'....Ludovic Courtès 2021-06-08store: Remove 'references/substitutes'....Ludovic Courtès 2021-03-18tests: Make the STORE test more robust in a "pure" environment....Leo Famulari 2021-01-22store: Add 'find-roots' RPC....Ludovic Courtès 2020-12-19tests: Make sure substituted items are deduplicated....Ludovic Courtès 2020-12-19tests: Check the mtime and permissions of substituted items....Ludovic Courtès 2020-12-19tests: Check the build trace for hash mismatches on substitutes....Ludovic Courtès