aboutsummaryrefslogtreecommitdiffhomepage
path: root/distribute
diff options
context:
space:
mode:
Diffstat (limited to 'distribute')
-rwxr-xr-xdistribute10
1 files changed, 8 insertions, 2 deletions
diff --git a/distribute b/distribute
index 2169bda..fcadb84 100755
--- a/distribute
+++ b/distribute
@@ -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 $@