Removed unnecessary -r option, it is not needed, but only slows down the build.

This commit is contained in:
Alex Zolotarev 2015-11-12 22:09:41 -08:00
parent c3e9fb93fe
commit a6368ec63d

View file

@ -52,7 +52,7 @@ BuildQt() {
cd "$SHADOW_DIR"
if [ ! -f "$SHADOW_DIR/Makefile" ]; then
echo "Launching qmake..."
"$QMAKE" CONFIG-=sdk -r "$QMAKE_PARAMS" -spec "$(StripCygwinPrefix $MKSPEC)" "$(StripCygwinPrefix $MY_PATH)/../../omim.pro"
"$QMAKE" CONFIG-=sdk "$QMAKE_PARAMS" -spec "$(StripCygwinPrefix $MKSPEC)" "$(StripCygwinPrefix $MY_PATH)/../../omim.pro"
fi
# make clean > /dev/null || true
make -j $(GetCPUCores)