]> git.lyx.org Git - lyx.git/commitdiff
Update build script
authorRichard Kimberly Heck <rikiheck@lyx.org>
Sun, 11 Dec 2022 16:13:44 +0000 (11:13 -0500)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Sun, 11 Dec 2022 16:13:44 +0000 (11:13 -0500)
development/tools/lyx-build

index 0dd9088763eeefefa4be5093400848ea01e1c666..a73ea12d2c91127b924f30026a947bed24105c58 100755 (executable)
@@ -23,7 +23,7 @@ if [ -z "$EDITOR" ]; then EDITOR=vi; fi
 # Option variables
 
 # Options to make, when we compile
-MAKEOPTS="-j8";
+MAKEOPTS="-j12";
 # Compile?
 COMPILE="YES";
 # Make patch file?
@@ -49,7 +49,7 @@ shift $(($OPTIND - 1));
 
 # Determine LyX version
 cd $SRCDIR/
-VERSION=$(head configure.ac | grep AC_INIT | perl -e 'while (<>) {m/AC_INIT\(LyX,([^,]+)/; print $1;}');
+VERSION=$(head configure.ac | grep AC_INIT | perl -e 'while (<>) {m/AC_INIT\(\[LyX\],\[([^,]+)\]/; print $1;}');
 
 # Development release?
 DEVEL_RELEASE="";