File: reconf

package info (click to toggle)
curl 7.15.5-1etch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 9,400 kB
  • ctags: 5,904
  • sloc: ansic: 47,247; sh: 9,209; perl: 3,486; makefile: 630; cpp: 178; awk: 40; lisp: 33
file content (15 lines) | stat: -rwxr-xr-x 348 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# $Id: reconf,v 1.4 2001/05/30 07:59:47 bagder Exp $
#
# re autoconf/automake shell script
#

die(){
	echo "$@" ; exit
}

aclocal -I . || die "The command 'aclocal -I .' failed"
autoheader   || die "The command 'autoheader' failed"
automake     || die "The command 'automake' failed"
autoconf     || die "The command 'autoconf' failed"