File: bootstrap

package info (click to toggle)
libdca 0.0.5-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,472 kB
  • ctags: 640
  • sloc: ansic: 14,031; sh: 9,153; makefile: 335
file content (20 lines) | stat: -rwxr-xr-x 584 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/sh

##  generic bootstrap file for libraries -- Sam Hocevar <sam@zoy.org>
##  $Id: bootstrap 42 2007-04-06 17:41:15Z courmisch $

set -x
set -e

# Get a sane environment, just in case
LANG=C
export LANG
CYGWIN=binmode
export CYGWIN

# Remove old cruft
rm -f aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh
rm -Rf autom4te.cache
(cd autotools && rm -f config.guess config.sub missing mkinstalldirs compile ltmain.sh depcomp install-sh)

autoreconf -sfi -Wall