Erik Grinaker is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

erikg / Revelation

Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.

Clone this repository (size: 2.0 MB): HTTPS / SSH
hg clone https://bitbucket.org/erikg/revelation
hg clone ssh://hg@bitbucket.org/erikg/revelation

Revelation / autogen.sh

commit
60595491f191
parent
ac1d7b7ffc91
branch
default
tags
revelation-0.4.5

set release date

1
a207757f8451
#!/bin/sh
2
a207757f8451
#
3
a207757f8451
# autogen.sh
4
a207757f8451
# $Id$
5
a207757f8451
#
6
a207757f8451
# Generates initial makefiles etc
7
a207757f8451
#
8
a207757f8451
9
a207757f8451
: ${AUTOCONF=autoconf}
10
a207757f8451
: ${AUTOMAKE=automake}
11
a207757f8451
: ${ACLOCAL=aclocal}
12
a207757f8451
13
a207757f8451
srcdir=`dirname $0`
14
a207757f8451
test -z "$srcdir" && srcdir="."
15
a207757f8451
16
a207757f8451
# avoid using caches
17
a207757f8451
rm -rf autom4te.cache
18
a207757f8451
rm -f aclocal.m4
19
a207757f8451
20
a207757f8451
# generates makefiles etc
21
a207757f8451
echo "Running $ACLOCAL..."
22
a207757f8451
WANT_AUTOMAKE="1.7" $ACLOCAL || exit 1
23
a207757f8451
test -f aclocal.m4 || \
24
a207757f8451
	{ echo "aclocal failed to generate aclocal.m4" 2>&1; exit 1; }
25
a207757f8451
26
a207757f8451
echo "Running $AUTOCONF..."
27
a207757f8451
WANT_AUTOMAKE="1.7" $AUTOCONF || exit 1
28
a207757f8451
test -f configure || \
29
a207757f8451
	{ echo "autoconf failed to generate configure" 2>&1; exit 1; }
30
a207757f8451
31
a207757f8451
echo "Running $AUTOMAKE..."
32
a207757f8451
WANT_AUTOMAKE="1.7" $AUTOMAKE || exit 1
33
a207757f8451
test -f Makefile.in || \
34
a207757f8451
	{ echo "automake failed to generate Makefile.in" 2>&1; exit 1; }
35
a207757f8451
36
1c96b7e48232
# clean up
37
1c96b7e48232
rm -rf autom4te.cache
38
1c96b7e48232