Skip to content

Commit b7f7bd1

Browse files
committed
debian packaging: fix release builds (followup 792c19b)
(cherry picked from commit 0def61c)
1 parent 033e2e6 commit b7f7bd1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

debian/rules

+4
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,14 @@ override_dh_auto_configure:
220220
dh_auto_configure -- $(CMAKE_OPTS)
221221

222222
override_dh_auto_build-arch:
223+
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
223224
ninja -C $(QGIS_BUILDDIR) $(DEB_TEST_TARGET)Build || \
224225
cat $(QGIS_BUILDDIR)/Testing/Temporary/LastBuild_$$(head -1 $(QGIS_BUILDDIR)/Testing/TAG).log || \
225226
ninja -C $(QGIS_BUILDDIR) $(DEB_TEST_TARGET)Submit || \
226227
false
228+
else
229+
ninja -C $(QGIS_BUILDDIR)
230+
endif
227231

228232
override_dh_auto_build-indep:
229233
ninja -C $(QGIS_BUILDDIR) apidoc

0 commit comments

Comments
 (0)