diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-15 17:28:06 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-15 17:28:06 (GMT) |
commit | 5e2350d25240c95ba6765607416aebb6d7c83949 (patch) | |
tree | 93d9a114617d7258022edf950ef108bf17c739e4 /scripts/mingw-x-build-dependencies.sh | |
parent | cd81cecc3a37de7f3585f5bfaa528f63fcdf5dd9 (diff) |
improve printout notices
Diffstat (limited to 'scripts/mingw-x-build-dependencies.sh')
-rwxr-xr-x | scripts/mingw-x-build-dependencies.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mingw-x-build-dependencies.sh b/scripts/mingw-x-build-dependencies.sh index f60633b..c614577 100755 --- a/scripts/mingw-x-build-dependencies.sh +++ b/scripts/mingw-x-build-dependencies.sh @@ -42,13 +42,13 @@ fi echo NUMCPU: $NUMCPU echo NUMJOBS: $NUMJOBS -echo "Downloading MXE into " $MXEDIR cd $BASEDIR - if [ ! -e mxe ]; then + echo "Downloading MXE into " $MXEDIR git clone git://github.com/mxe/mxe.git fi +echo "entering" $MXEDIR cd $MXEDIR echo "make mpfr eigen opencsg cgal qt -j $NUMCPU JOBS=$NUMJOBS" make mpfr eigen opencsg cgal qt -j $NUMCPU JOBS=$NUMJOBS @@ -69,5 +69,5 @@ echo "now copy/paste the following to cross-build openscad" echo echo "export PATH=$MXEDIR/usr/bin:\$PATH" echo "i686-pc-mingw32-qmake CONFIG+=mingw-cross-env openscad.pro" -echo "make" +echo "make -j$NUMCPU" echo |