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 30 31
|
#!/bin/sh
if [ -d m4 ]; then
:
else
mkdir m4
fi
if [ -d scripts ]; then
:
else
mkdir scripts
fi
sed -e "s/@RELEASE_DATE@/`date '+%d %b %Y'`/" -e "s/@RELEASE_UDATE@/`date '+%s'`/" scripts/schroot_release.m4.in > m4/schroot_release.m4
# To satisfy automake
touch ChangeLog
echo "libtoolize"
libtoolize --force --copy
echo "autopoint"
autopoint --force
echo "aclocal -I m4"
aclocal -I m4
echo "autoheader"
autoheader
echo "automake"
automake --add-missing --gnu --force --copy
echo "autoconf"
autoconf
|