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
ses)[native-search-paths]: New field. Ludovic Courtès 2015-12-05gnu: Add dialog....* gnu/packages/python.scm (dialog): New variable. Leo Famulari 2015-08-30gnu: ncurses: Really install headers to OUT/include....* gnu/packages/ncurses.scm (ncurses)[arguments]: Pass --enable-overwrite. Ludovic Courtès 2015-08-29gnu: ncurses: Remove obsolete hack....* gnu/packages/ncurses.scm (ncurses)[arguments]: Remove obsolete Solaris hack. Ludovic Courtès 2015-08-29gnu: ncurses: Rework trick to avoid reference to the bootstrap bash....This removes reliance on the availability of 'bin/sh' in glibc. * gnu/packages/ncurses.scm (ncurses): Remove 'configure-phase'. Add 'remove-shebang-phase'. [arguments]: Remove distinction between cross builds and native builds. Use 'modify-phases'. Add 'remove-unneeded-shebang' phase. Ludovic Courtès 2015-08-29gnu: ncurses: Upgrade to 6.0....* gnu/packages/ncurses.scm (ncurses): Upgrade to 6.0. Change library names to '.so.6'. Ludovic Courtès 2015-04-02gnu: ncurses: Install terminfo files when cross-compiling....* gnu/packages/ncurses.scm (ncurses): Remove 'cross-pre-install-phase'. When cross-compiling, it was leading to an empty $out/share/terminfo directory. Ludovic Courtès