]> git.lyx.org Git - lyx.git/commitdiff
Fixes for the build script.
authorRichard Kimberly Heck <rikiheck@lyx.org>
Tue, 28 Aug 2018 19:18:53 +0000 (15:18 -0400)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Tue, 28 Aug 2018 19:19:48 +0000 (15:19 -0400)
(cherry picked from commit 01c23b386499e0cf3902a4e1b06e03f1fa1dcc0f)

development/tools/lyx-build

index ae9237dbecbfbc6e27d6c9d8626d6263f4c10dda..e78eaa7502c8d8c0fb336f07008b34d3d5ecd8ac 100755 (executable)
@@ -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.";