~xnox/lightdm/archive-upload

1 by robert.ancell at gmail
Compiles and does something
1
#!/bin/sh
2
# Run this to generate all the initial makefiles, etc.
3
1562 by Robert Ancell
Stop using gnome-autogen.sh
4
libtoolize --force --copy
1787 by Michael Terry
Some packaging changes to make the tarball match what is in bzr and prevent lintian warnings
5
intltoolize --force --copy
1562 by Robert Ancell
Stop using gnome-autogen.sh
6
gtkdocize --copy
7
aclocal
8
autoconf
9
autoheader
10
automake --add-missing --copy --foreign
1580 by Michael Terry
Ape gnome-autogen's use of NOCONFIGURE to control whether ./autogen.sh runs ./configure or not
11
if [ -z "$NOCONFIGURE" ]; then
12
    ./configure $@
13
fi