mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 18:45:10 +00:00
435842e494
From: "Petr Holub" <hopet@users.sourceforge.net> git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@608 7f574dfc-610e-0410-a909-a81674777703
17 lines
218 B
Bash
Executable File
17 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
# $Id$
|
|
|
|
if [ `uname -s` = FreeBSD ]; then
|
|
aclocal19
|
|
libtoolize15 --force
|
|
autoheader259
|
|
automake19 -a
|
|
autoconf259
|
|
else
|
|
aclocal-1.9
|
|
libtoolize --force
|
|
autoheader-2.59
|
|
automake-1.9 -a
|
|
autoconf-2.59
|
|
fi
|