From: Richard Kimberly Heck Date: Tue, 28 Aug 2018 19:18:53 +0000 (-0400) Subject: Fixes for the build script. X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3087 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=29b80c802cce7ea79712b5e1fe4f4670c3983715;p=lyx.git Fixes for the build script. (cherry picked from commit 01c23b386499e0cf3902a4e1b06e03f1fa1dcc0f) --- diff --git a/development/tools/lyx-build b/development/tools/lyx-build index ae9237dbec..e78eaa7502 100755 --- a/development/tools/lyx-build +++ b/development/tools/lyx-build @@ -42,7 +42,7 @@ mkdir $BASE/lyx-build/ cd $BASE/lyx-build/ echo "Building distribution..."; -$BASE/lyx-export/configure --enable-build-type=rel +$BASE/lyx-export/configure --enable-build-type=rel --enable-qt5 if ! make lyxdist; then echo "Couldn't make distribution!"; exit 1; @@ -72,7 +72,7 @@ if ! cd lyx-$VERSION; then exit 1; fi -./configure --enable-build-type=rel +./configure --enable-build-type=rel --enable-qt5 if make $MAKEOPTS; then echo "Compilation complete.";