blob: 93723b78fe43f43712c2db0972b794382c4b428d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
# $Id: bootstrap 1044 2009-09-23 04:34:38Z michael $
# $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/bootstrap $
# exit on errors
set -e
# set nicer prompt for tracing
PS4="$0:\$LINENO> "
set -x
aclocal
libtoolize --copy --force
autoheader
automake --add-missing --copy --foreign
autoconf
|