jgehring / rsvndump

Remote Subversion repository dump

This URL has Read+Write access

rsvndump / autogen.sh
100755 14 lines (12 sloc) 0.46 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# A small script to invoke autotools.
#
# Please note that this file is (of course) NOT licensed under the GPL,
# as this would make absolutely no sense for 4 lines of sh code.
# Therfore, it is released into the public domain.
#
 
autoheader || (echo "autoheader failed" && exit 1)
aclocal -I m4 || (echo "aclocal failed" && exit 1)
automake --add-missing --copy || (echo "automake failed" && exit 1)
autoconf || (echo "autoconf failed" && exit 1)