File: bootstrap

package info (click to toggle)
dirac 1.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 10,564 kB
  • sloc: cpp: 28,139; sh: 12,888; makefile: 453; perl: 87; ansic: 8
file content (21 lines) | stat: -rwxr-xr-x 513 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# Extremely basic script to regenerate the autoconf files etc
#
# 11th March 2004 Copyright BBC

# remove generated files (avoids clashes between versions of autotools)
rm -f depcomp missing install-sh mkinstalldirs
rm -f aclocal.m4 configure Makefile.in config.guess ltmain.sh config.sub
rm -rf autom4te.cache

set -x
aclocal --force -I m4
libtoolize --force --copy
automake --foreign --copy --add-missing --force-missing
if [ $? -ne 0 ]; 
then
	echo "automake failed" 
	exit -3 
fi
autoconf --force