Commit d7312ed9 authored by Łukasz Nowak's avatar Łukasz Nowak

- do not use local libtool nor automake, just make hook more adaptable

Even if providing own libtool and automake seems more portable, it ends
up with more and more dependencies and configuration issues.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36670 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 37ba16d8
......@@ -6,9 +6,9 @@ import os
CMDS = """
cd %s/*
libtoolize -c -f
aclocal-1.9
which aclocal-1.9 >/dev/null 2>/dev/null && aclocal-1.9 || aclocal
autoheader
automake-1.9 -c -a -i
which automake-1.9 >/dev/null 2>/dev/null && automake-1.9 -c -a -i || automake -c -a -i
autoconf
touch sql/sql_yacc.yy
""".strip()
......
......@@ -42,11 +42,10 @@ configure-options =
patch-options = -p1
patches = ${mysql-5.0-tritonn-patch:location}/${mysql-5.0-tritonn-patch:filename}
environment =
PATH =${senna:location}/bin:${automake-1.9:location}/bin:%(PATH)s
PATH =${senna:location}/bin:%(PATH)s
CFLAGS =-I${senna:location}/include/senna
CXXFLAGS =-I${senna:location}/include/senna
LDFLAGS =-L${senna:location}/lib
LIBTOOL =${libtool:location}/bin/libtool
[requirements]
binary = automake flex bison patch gcc g++ libtool
......
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