From: Ulya Trofimovich Date: Mon, 11 May 2015 09:54:26 +0000 (+0100) Subject: Don't recompile scanner by default. X-Git-Tag: 0.15~282 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56b7fe2428272098f5980493ce2b2d59a6f1a05a;p=re2c Don't recompile scanner by default. Since it will cause insignifacant changes in bootstrap files which we'll have to commit every time. --- diff --git a/re2c/build.sh b/re2c/build.sh index 7868d1e1..5fe2e4b3 100755 --- a/re2c/build.sh +++ b/re2c/build.sh @@ -6,5 +6,5 @@ mkdir $builddir cd $builddir ../configure --enable-silent-rules && \ -make bootstrap -j5 +make -j5 cd ..