Skip to content
Snippets Groups Projects
Commit 4f3fbbc1 authored by Giacomo Strangolino's avatar Giacomo Strangolino
Browse files

&& in Makefile to avoid first failure ends successfully

parent 4a40b0e2
No related branches found
Tags 2.2.14
No related merge requests found
......@@ -12,7 +12,7 @@ export MAKE := $(MAKE)
# The default target when you run 'make'
all:
@qmake INSTALL_ROOT=$(TMP_INSTALL_DIR) prefix=$(PREFIX) -o $(MKF_OUT) && $(MAKE) -f $(MKF_OUT) \
&& $(MAKE) -f $(MKF_OUT) install; \
&& $(MAKE) -f $(MKF_OUT) install && \
cd plugins/controls && qmake INSTALL_ROOT=$(TMP_INSTALL_DIR) prefix=$(PREFIX) -o $(MKF_OUT) && $(MAKE) -f $(MKF_OUT) \
&& $(MAKE) -f $(MKF_OUT) install;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment