summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2020-01-16 20:06:18 +0000
committer Eric Hameleers <alien@slackware.com>2020-01-16 20:06:18 +0000
commit010d5f3d42db7a9719b34469b3e6e84d79b0dc31 (patch)
treec920081e668de1b45d4d58627480eab843ee03b6
parent57304e23e0de1e73056712d9109efc9a19881f85 (diff)
downloadasb-010d5f3d42db7a9719b34469b3e6e84d79b0dc31.tar.gz
asb-010d5f3d42db7a9719b34469b3e6e84d79b0dc31.tar.xz
libreoffice: fix a crash in localc when attempting to modify Marcos in the toolbar
-rwxr-xr-xlibreoffice/build/libreoffice.SlackBuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/libreoffice/build/libreoffice.SlackBuild b/libreoffice/build/libreoffice.SlackBuild
index 6f3185b8..6bb62efe 100755
--- a/libreoffice/build/libreoffice.SlackBuild
+++ b/libreoffice/build/libreoffice.SlackBuild
@@ -1400,6 +1400,9 @@ make build-nocheck VERBOSE=yes 2>&1 | tee -a $OUTPUT/make-${PRGNAM}.log
# does not actually install the dictionaries.
make -C dictionaries VERBOSE=yes 2>&1 | tee -a $OUTPUT/make-${PRGNAM}.log
+# Fix some wrong (directory) permissions:
+chmod -R u+w,go+r-w,a+X-s .
+
# Install the lot:
echo "Starting the packaging stage for $PRGNAM..."
make DESTDIR=$PKG distro-pack-install \
@@ -1610,10 +1613,13 @@ if [ ! -z "${ADD_LANGUAGES}" ]; then
-o -path "*/resource/*" -name "*${lolang}.res" \
-o -path "*/registry/*" -name "*_${lolang}.xcd" \
-o -path "*/registry/*" -name "*-${lolang}.xcd" \
- -o -name "Lang_*${lolang}.xba" \
+ -o -path "*/wizards/*" -name "*_${lolang}.properties" \
-o -name "Langpack-${lolang}.xcu" \
-o -name "*${lolang}.oxt") \
| ( cd ${PKG}-l10n-$lang ; tar xf - )
+ # Breaks menu customization because several are mentioned in
+ # /usr/lib64/libreoffice/share/basic/Depot/script.xlb
+ #-o -name "Lang_*${lolang}.xba" \
# Create slack-desc and doinst.sh :
mkdir -p ${PKG}-l10n-$lang/install
cat $SRCDIR/slack-desc.l10n \