File: bootstrap

package info (click to toggle)
edac-utils 0.18%2Bgit12-gd98769e-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,440 kB
  • sloc: sh: 8,410; ansic: 1,802; perl: 476; makefile: 69
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