File: bootstrap.sh

package info (click to toggle)
pd-flext 0.6.0%2Bgit20161101.1.01318a94-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,212 kB
  • ctags: 1,846
  • sloc: cpp: 13,015; makefile: 735; sh: 85
file content (20 lines) | stat: -rwxr-xr-x 384 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
#! /bin/sh

(
    (
        (
            test -x "$(which libtoolize)" && libtoolize --force
        ) ||
        (
            # MacOS has no libtoolize... use glibtoolize instead
            test -x "$(which glibtoolize)" && glibtoolize --force
        )
    ) &&
    aclocal &&
    automake --foreign --add-missing &&
    autoconf
) ||
(
    echo Bootstrapping failed
    false
)