1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00
conky/autogen.sh
Roman Bogorodskiy 6b857758eb - Minor change to ${top} stuff to fix a possible
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
2006-03-25 14:28:40 +00:00

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