File: bootstrap

package info (click to toggle)
openbox 3.7~rc2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 5,892 kB
  • sloc: ansic: 38,834; xml: 1,358; sh: 665; makefile: 613; python: 421
file content (18 lines) | stat: -rwxr-xr-x 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh

sh() {
  /bin/sh -c "set -x; $*"
}

export WANT_AUTOMAKE=1.11

sh autopoint --force || exit 1 # for GNU gettext
sh libtoolize --copy --force --automake || exit 1
sh aclocal -I m4 $ACLOCAL_FLAGS || exit 1
#sh autoheader || exit 1
sh autoconf || exit 1
sh automake --include-deps --add-missing --copy || exit 1

echo
echo You are now ready to run ./configure
echo enjoy!