1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00
conky/autogen.sh
Brenden Matthews e5abed0eac small autogen fix
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@59 7f574dfc-610e-0410-a909-a81674777703
2005-08-05 03:49:10 +00:00

36 lines
370 B
Bash
Executable File

#!/bin/sh
# $Id$
alocver=1.9
aheadver=2.59
amakever=1.9
aconfver=2.59
if [ -x aclocal-$alocver ]
then
aclocal-$alocver
else
aclocal
fi
if [ -x autoheader-$aheadver ]
then
autoheader-$aheadver
else
autoheader
fi
if [ -x automake-$amakever ]
then
automake-$amakever -a
else
automake -a
fi
if [ -x autoconf-$aconfver ]
then
autoconf-$aconfver
else
autoconf
fi