~taylorp36/ubuntu/wily/aisleriot/bug-1490189

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

set -e

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

cd "$srcdir"
mkdir -p m4 >/dev/null 2>&1 || true
autoreconf --verbose --force --install
intltoolize --force
cd -

test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"