mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
e5abed0eac
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@59 7f574dfc-610e-0410-a909-a81674777703
36 lines
370 B
Bash
Executable File
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
|