Skip to content

Commit 990b850

Browse files
committed
Qt: be sure to have cascading fails for commands
1 parent 9e52deb commit 990b850

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/src/qt/rules.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ ifdef HAVE_CROSS_COMPILE
5656
# Building Qt build tools for Xcompilation
5757
cd $</include/QtCore; ln -sf $(QT_VERSION)/QtCore/private
5858
cd $</qmake; $(MAKE)
59-
cd $</src/tools
59+
cd $</src/tools; \
6060
for i in bootstrap uic rcc moc; \
61-
do (cd $$i; echo $$i && ../../../bin/qmake -spec $(QT_SPEC); $(MAKE) clean; $(MAKE) CC=$(HOST)-gcc CXX=$(HOST)-g++ LINKER=$(HOST)-g++; $(MAKE) install); \
61+
do (cd $$i; echo $$i && ../../../bin/qmake -spec $(QT_SPEC) && $(MAKE) clean && $(MAKE) CC=$(HOST)-gcc CXX=$(HOST)-g++ LINKER=$(HOST)-g++ && $(MAKE) install); \
6262
done
6363
endif
6464
touch $@

0 commit comments

Comments
 (0)