Update macosx-build-dependencies.sh

Split the single 'make -j"$NUMCPU" install' into two-stage.
This commit is contained in:
Andrew Plumb 2015-11-22 00:23:06 -05:00
parent b99ac24898
commit 779e9c504c

View file

@ -236,7 +236,8 @@ build_qt5()
-skip enginio -skip graphicaleffects -skip location -skip multimedia \
-skip quick1 -skip quickcontrols -skip script -skip sensors -skip serialport \
-skip svg -skip webkit -skip webkit-examples -skip websockets -skip xmlpatterns -skip qtwebchannel
make -j"$NUMCPU" install
make -j"$NUMCPU"
make install
}
check_qscintilla()