Skip to content

Commit

Permalink
Libreoffice:Update to version 7.5.1.1
Browse files Browse the repository at this point in the history
add parallelism option to configure and fix integer error
  • Loading branch information
david committed Feb 17, 2023
1 parent 5218ee5 commit a47fd5c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions libreoffice.be0
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ mee_configure() {
. /pkg/openjdk-17.0.2.8-0/profile
. /pkg/apache-ant-1.10.12-0/profile

#checking for number of processors to use... ./configure: line 44675: test: -j80: integer expression expected
if [[ ${BEE_MAKEFLAGS:: 2} == "-j" ]]; then
LALA=${BEE_MAKEFLAGS: 2}
fi

${S}/autogen.sh \
--prefix=${PREFIX} \
Expand Down Expand Up @@ -63,8 +67,8 @@ mee_configure() {
--with-system-openssl \
--with-system-poppler \
--with-system-postgresql \
--with-system-serf \
--with-system-zlib
--with-system-zlib \
--with-parallelism=${LALA}
sed -i 's/all: check-if-root build/all: build/g' ${B}/Makefile
sed -i 's/bootstrap: check-if-root compilerplugins/all: compilerplugins/g' ${B}/Makefile

Expand Down

0 comments on commit a47fd5c

Please sign in to comment.