Module: kamailio
Branch: master
Commit: ad48f441ec9d0611b9c80d51c459099bb520f393
URL:
https://github.com/kamailio/kamailio/commit/ad48f441ec9d0611b9c80d51c459099…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2017-06-13T15:40:12+02:00
Makefile: deb rule, remove --no-sign and use -us -uc
* --no-sign just works for stretch
---
Modified: src/Makefile
---
Diff:
https://github.com/kamailio/kamailio/commit/ad48f441ec9d0611b9c80d51c459099…
Patch:
https://github.com/kamailio/kamailio/commit/ad48f441ec9d0611b9c80d51c459099…
---
diff --git a/src/Makefile b/src/Makefile
index 2bbbdc3c89..c590e5c9f0 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -611,11 +611,11 @@ bin:
deb:
(cd ..; \
if [ -d debian ]; then \
- dpkg-buildpackage -rfakeroot -tc --no-sign; \
+ dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
else \
ln -s pkg/$(MAIN_NAME)/deb/debian debian; \
- dpkg-buildpackage -rfakeroot -tc --no-sign; \
+ dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
fi)
@@ -623,11 +623,11 @@ deb:
deb-stable:
(cd ..; \
if [ -d debian ]; then \
- dpkg-buildpackage -rfakeroot -tc --no-sign; \
+ dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
else \
ln -s pkg/$(MAIN_NAME)/deb/jessie debian; \
- dpkg-buildpackage -rfakeroot -tc --no-sign; \
+ dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
fi)