grub/autogen.sh

27 lines
843 B
Bash
Raw Normal View History

2002-12-27 08:53:07 +00:00
#! /bin/sh
set -e
2010-08-23 08:02:59 +00:00
autogen --version >/dev/null || exit 1
2010-06-08 12:07:17 +00:00
2010-07-12 19:13:28 +00:00
echo "Importing unicode..."
python util/import_unicode.py unicode/UnicodeData.txt unicode/BidiMirroring.txt unicode/ArabicShaping.txt grub-core/unidata.c
2010-06-03 06:22:33 +00:00
echo "Importing libgcrypt..."
2010-08-17 13:33:22 +00:00
python util/import_gcry.py grub-core/lib/libgcrypt/ grub-core
2010-08-20 12:51:31 +00:00
echo "Creating Makefile.tpl..."
python gentpl.py | sed -e '/^$/{N;/^\n$/D;}' > Makefile.tpl
echo "Running autogen..."
autogen -T Makefile.tpl Makefile.util.def | sed -e '/^$/{N;/^\n$/D;}' > Makefile.util.am
autogen -T Makefile.tpl grub-core/Makefile.core.def | sed -e '/^$/{N;/^\n$/D;}' > grub-core/Makefile.core.am
autogen -T Makefile.tpl grub-core/Makefile.gcry.def | sed -e '/^$/{N;/^\n$/D;}' > grub-core/Makefile.gcry.am
2010-06-03 06:22:33 +00:00
echo "Saving timestamps..."
2010-05-06 06:04:04 +00:00
echo timestamp > stamp-h.in
2002-12-27 08:53:07 +00:00
2010-06-03 06:22:33 +00:00
echo "Running autoreconf..."
autoreconf -vi
2002-12-27 08:53:07 +00:00
exit 0