File: bootstrap

package info (click to toggle)
munge 0.5.8-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,628 kB
  • ctags: 1,064
  • sloc: ansic: 13,400; sh: 9,746; makefile: 325
file content (13 lines) | stat: -rwxr-xr-x 302 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
##
# $Id: bootstrap 412 2005-07-19 22:40:47Z dun $
##

set -x
aclocal -I config || exit 1
libtoolize --automake --copy --force || exit 1
autoheader || exit 1
automake --add-missing --copy --force-missing --gnu || exit 1
autoconf --force --warnings=all || exit 1
rm -fr autom4te*.cache
exit 0