diff options
-rwxr-xr-x | distribute | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -54,17 +54,23 @@ ifneq ($(UBUNTU),) @EW||" endif +ifeq ($(SIGN),) +DEBUILD_FLAGS := -us -uc +else +DEBUILD_FLAGS := +endif + debian-source : debian-temp/source-stamp debian-temp/source-stamp : debian-prepare (cd debian-temp/sciteco-$(SCITECO_VERSION)/; \ - debuild -us -uc -S; \ + debuild -S -sa $(DEBUILD_FLAGS); \ ) touch $@ debian-binary : debian-temp/binary-stamp debian-temp/binary-stamp : debian-prepare (cd debian-temp/sciteco-$(SCITECO_VERSION)/; \ - debuild -us -uc -b; \ + debuild -b -sa $(DEBUILD_FLAGS); \ ) touch $@ |