File: bootstrap

package info (click to toggle)
libzdb 3.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,600 kB
  • sloc: javascript: 7,158; ansic: 6,413; sh: 3,993; cpp: 582; makefile: 114; xml: 59; lex: 35
file content (14 lines) | stat: -rwxr-xr-x 400 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# Use this script to re-create configure. Requires the following auto-tools,
# autoconf        >= 2.59
# automake        >= 1.9
# libtool         >= 1.4
glibtoolize -f 2>/dev/null || libtoolize -f
if aclocal -I config && autoheader && automake --foreign --add-missing --copy && autoconf 
then
        echo "Success" 
else
        echo "Bootstrapping Build System failed"
        exit 1
fi