-
Notifications
You must be signed in to change notification settings - Fork 8
/
autogen.sh
executable file
·34 lines (27 loc) · 1009 Bytes
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# Bootstrap script for Endless OS Knowledge Apps
# Run this script on a clean source checkout to get ready for building.
POT_FILE=po/eos-knowledge.pot
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.
olddir=`pwd`
cd $srcdir
test -f configure.ac || {
echo "You must run this script in the top-level checkout directory"
exit 1
}
# GNU gettext automake support doesn't get along with git
# https://bugzilla.gnome.org/show_bug.cgi?id=661128
touch -t 200001010000 $POT_FILE
# NOCONFIGURE is used by gnome-common
if test -z "$NOCONFIGURE"; then
echo "This script will run ./configure automatically. If you wish to pass "
echo "any arguments to it, please specify them on the $0 "
echo "command line. To disable this behavior, have NOCONFIGURE=1 in your "
echo "environment."
fi
# Run the actual tools to prepare the clean checkout
autoreconf -fi || exit $?
rm -f po/Makevars.template
cd "$olddir"
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"