Commit 6c3e3f31 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

r34125@cat (orig r1229): des | 2006-12-05 12:42:39 +0100

 Better workaround for FreeBSD autotools brokenness.
 
 Pointy hat to:	{ade,portsmgr}@freebsd.org
 


git-svn-id: http://www.varnish-cache.org/svn/branches/1.0@1250 d4fa192b-c00b-0410-8231-f00ffab90ce4
parents 82b55c35 3072196f
......@@ -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