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

- add a way to avoid mandriva issues with packages


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36071 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3381d1c8
......@@ -12,7 +12,16 @@ Helper for buildout-base installation of ERP5 on Mandriva 2010.
-h shows this message
-l lists the required dependencies\
"""
# Avoid some mandriva bugs, when package with canonical name libXXX
# is wrongly only 32 bit
if [ `uname -m` == "x86_64" ] ; then # XXX: Is it compilant way to fetch arch?
libs="lib64ungif4-devel"
else
libs="libungif4-devel"
fi
PACKAGE_LIST="""\
${libs}
automake
bison
cpio
......@@ -36,7 +45,6 @@ libpng-devel
libreadline-devel
libsasl2-devel
libtermcap-devel
libungif4-devel
libxml2-devel
libxslt-devel
make
......
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