Matomat/librfid_1999/autogen.sh

18 lines
194 B
Bash
Raw Permalink Normal View History

2015-11-15 19:18:42 +01:00
#!/bin/sh
run ()
{
echo "running: $*"
eval $*
if test $? != 0 ; then
echo "error: while running '$*'"
exit 1
fi
}
run aclocal
run libtoolize -f
run automake -a
run autoconf