mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
6b857758eb
race condition (Petr Holub) - Make autogen.sh a little bit more configurable. Now it calls 'automake', 'autoconf' etc by default. To match your disto name conventions for autotools, you can run it like: "AUTOCONF=autoconf-2.59 AUTOMAKE=automake18 ./autogen.sh" git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@610 7f574dfc-610e-0410-a909-a81674777703
15 lines
247 B
Bash
Executable File
15 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
# $Id$
|
|
|
|
AUTOCONF=${AUTOCONF:-autoconf}
|
|
AUTOMAKE=${AUTOMAKE:-automake}
|
|
ACLOCAL=${ACLOCAL:-aclocal}
|
|
AUTOHEADER=${AUTOHEADER:-autoheader}
|
|
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
|
|
|
|
$ACLOCAL
|
|
$LIBTOOLIZE --force
|
|
$AUTOHEADER
|
|
$AUTOMAKE -a
|
|
$AUTOCONF
|