File: bootstrap

package info (click to toggle)
edac-utils 0.18%2Bgit16-g8fdc1d4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,476 kB
  • sloc: sh: 8,417; ansic: 1,802; perl: 476; xml: 147; makefile: 61
file content (14 lines) | stat: -rwxr-xr-x 303 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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