From: maintenance team Date: Mon, 23 Nov 2009 14:06:28 +0000 (+0000) Subject: Small update X-Git-Tag: V5_1_3~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6d2ea19eaef29c289351c031b8b913c7d807eb17;p=tools%2Finstall.git Small update --- diff --git a/config_files/common.sh b/config_files/common.sh index 8c2e35e..7582c54 100755 --- a/config_files/common.sh +++ b/config_files/common.sh @@ -846,6 +846,13 @@ if [ "$l" != "X" ] ; then sed -e "s%[[:space:]]\(-L\)\?[^[:space:]]*QScintilla-[0-9]\.[0-9]\(\.[0-9]\)\?/lib% \1${qscintilladir}%g" $l > $l"_" chmod -f --reference=$l $l"_" mv -f $l"_" $l + + # 21. process expat-2.0.1 dependencies + expatdir=${EXPAT_ROOT}/lib + sed -e "s%-L[^[:space:]]*expat[^[:space:]]*/lib%-L${expatdir}%g" \ + -e "s%[^[:space:]]*expat[^[:space:]]*/lib/libexpat.la%-lexpat%g" $l > $l"_" + chmod -f --reference=$l $l"_" + mv -f $l"_" $l fi done diff --git a/config_files/graphviz-2.24.0.sh b/config_files/graphviz-2.24.0.sh index 62e1560..846e72c 100755 --- a/config_files/graphviz-2.24.0.sh +++ b/config_files/graphviz-2.24.0.sh @@ -138,6 +138,13 @@ for l in X `find $ldir -name "*.la"`; do libdir=`grep -e "^libdir=.*" $l | sed -e "s/^libdir=[\'|\"]\(.*\)[\'|\"]/\1/g"` sed -e "s%${libdir}%${lpath}%g" $l > $l"_" chmod -f --reference=$l $l"_" ; mv -f $l"_" $l + + expatdir=${EXPAT_ROOT}/lib + sed -e "s%-L[^[:space:]]*expat[^[:space:]]*/lib%-L${expatdir}%g" \ + -e "s%[^[:space:]]*expat[^[:space:]]*/lib/libexpat.la%-lexpat%g" $l > $l"_" + chmod -f --reference=$l $l"_" + mv -f $l"_" $l + fi done