Commit a89c5002 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm repack.d: don't use patchelf --add-rpath (missed in old patch-elf)

parent e1696a9e
......@@ -20,11 +20,11 @@ done
epm assure patchelf || exit
for i in $BUILDROOT/opt/onlyoffice/desktopeditors/{libQt5Core.so.*,libicui18n.so,libicui18n.so.*,libicuuc.so,libicuuc.so.*} ; do
a= patchelf --add-rpath '$ORIGIN/' $i || continue
a= patchelf --set-rpath '$ORIGIN/' $i || continue
done
for i in $BUILDROOT/opt/onlyoffice/desktopeditors/converter/*.so ; do
a= patchelf --add-rpath '$ORIGIN/../' $i || continue
a= patchelf --set-rpath '$ORIGIN/:$ORIGIN/../' $i || continue
done
subst '1iAutoReq:no' $SPEC
......
......@@ -38,8 +38,7 @@ for i in $BUILDROOT/opt/zoom/{libicui18n.so,libicui18n.so.*,libicuuc.so,libicuuc
done
for i in $BUILDROOT/opt/zoom/zoom ; do
a= patchelf --set-rpath "$PRODUCTDIR/cef" $i
a= patchelf --add-rpath '$ORIGIN/' $i
a= patchelf --set-rpath "$ORIGIN/:$PRODUCTDIR/cef" $i
done
if [ -d $BUILDROOT/opt/zoom/QtQuick/Scene2D ] ; then
......
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