Commit 3072196f authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Better workaround for FreeBSD autotools brokenness.

Pointy hat to:	{ade,portsmgr}@freebsd.org


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1229 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 45aa3c75
......@@ -6,6 +6,7 @@
if [ -d /usr/local/gnu-autotools/bin ] ; then
PATH=/usr/local/gnu-autotools/bin:${PATH}
export PATH
FIX_BROKEN_FREEBSD_PORTS="-I /usr/local/share/aclocal"
fi
automake_version=$(automake --version | tr ' ' '\n' | egrep '^[0-9]\.[0-9a-z.-]+')
......@@ -26,12 +27,7 @@ fi
set -ex
if [ "x`uname -s`" = "xFreeBSD" ] ; then
# Ask DES
aclocal -I /usr/local/share/aclocal
else
aclocal
fi
aclocal ${FIX_BROKEN_FREEBSD_PORTS}
libtoolize --copy --force
autoheader
automake --add-missing --copy --foreign
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment