1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00
conky/autogen.sh

36 lines
370 B
Bash
Raw Normal View History

#!/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