Merge pull request #1468 from dl5rcw/master

fix for #1462 where qt3d failed to build on JOBS := 4
This commit is contained in:
Tony Theodore 2016-08-03 03:09:48 +10:00 committed by GitHub
commit b5d6fd519e
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ endef
define $(PKG)_BUILD
cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake'
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j '$(JOBS)' || $(MAKE) -C '$(1)' -j 1
$(MAKE) -C '$(1)' -j 1 install
endef