blob: 15511997cc1cda86e8bec81314baeca6a6e1e769 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
PROJECT=telepathy-python
test -f configure.ac || {
echo "You must run this script in the top-level $PROJECT directory">&2
exit 1
}
(autoreconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf, automake and libtoolize installed">&2
echo "to compile $PROJECT. Download the appropriate packages for">&2
echo "your distribution, or get the source tarball at ">&2
echo "ftp://ftp.gnu.org/pub/gnu/">&2
exit 1
}
if test -z "$*"; then
echo "I am going to run ./configure with no arguments - if you wish "
echo "to pass any to it, please specify them on the $0 command line."
fi
echo "Running autoreconf -f -i..."
autoreconf -f -i
cd $ORIGDIR
run_configure=true
for arg in $*; do
case $arg in
--no-configure)
run_configure=false
;;
*)
;;
esac
done
if $run_configure; then
$srcdir/configure "$@"
echo
echo "Now run 'make' to compile $PROJECT."
fi
|