File: Bootstrap

package info (click to toggle)
whitedb 0.7.3-4
  • links: PTS
  • area: main
  • in suites: buster
  • size: 3,400 kB
  • sloc: ansic: 25,072; sh: 11,753; python: 790; makefile: 119
file content (33 lines) | stat: -rwxr-xr-x 776 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

# $Id: $
# $Source: $

# Booting up the GNU automake, autoconf, etc system: 
# not needed after the configure executable script has been built

# Need to use use autoconf >= 2.50 an automake >= 1.5.  This allows user to
# set these variables in their environment, or to just use the defaults below.
# This is needed since some systems still use autoconf-2.13 and automake-1.4 as
# the defaults (e.g. debian).

: ${ACLOCAL=aclocal}
: ${AUTOMAKE=automake}
: ${AUTOCONF=autoconf}
: ${AUTOHEADER=autoheader}
: ${LIBTOOLIZE=libtoolize}

command -v glibtoolize && LIBTOOLIZE=glibtoolize

set -e

set -x
(
    ${ACLOCAL}  
    ${AUTOHEADER}  
    ${AUTOCONF}
    ${LIBTOOLIZE} --no-warn
    [ -d config-aux ] || mkdir config-aux
    ${AUTOMAKE} -a -c
)
rm -f config.cache