File: bootstrap

package info (click to toggle)
monit 1%3A5.35.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,228 kB
  • sloc: ansic: 31,202; yacc: 4,634; sh: 4,071; lex: 1,190; pascal: 480; makefile: 285
file content (16 lines) | stat: -rwxr-xr-x 511 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# Use this script to re-create configure. Requires the following auto-tools,
# autoconf        >= 2.59
# automake        >= 1.10
# libtool         >= 1.4
if (glibtoolize -f -c 2>/dev/null || libtoolize -f -c) && aclocal --force -I config && autoheader -f && automake -f --foreign --add-missing --copy && autoconf
then
        if cd libmonit && ./bootstrap
        then
                echo "Success bootstrapping Monit"
                exit 0;
        fi
fi
echo "Failed bootstrapping Monit"
exit 1;