]> git.proxmox.com Git - grub2.git/blame - autogen.sh
Initialise next pointer when creating multiboot module (closes:
[grub2.git] / autogen.sh
CommitLineData
6a161fa9 1#! /bin/sh
2
3set -e
4
fc22844e 5aclocal
6a161fa9 6autoconf
7autoheader
0ef45b93 8
a031e91c
RM
9# FIXME: automake doesn't like that there's no Makefile.am
10automake -a -c -f || true
11
96cdbeff 12echo timestamp > stamp-h.in
0ef45b93
RM
13
14python util/import_gcry.py lib/libgcrypt/ .
15
03e4ef02 16python util/import_unicode.py unicode/UnicodeData.txt unicode/BidiMirroring.txt unicode/ArabicShaping.txt unidata.c
f0cfb703 17
cefabfe1 18for rmk in conf/*.rmk ${GRUB_CONTRIB}/*/conf/*.rmk; do
19 if test -e $rmk ; then
20 ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
21 fi
6a161fa9 22done
04114812 23sh gendistlist.sh > DISTLIST
6a161fa9 24
25exit 0