Module: kamailio
Branch: master
Commit: a9807e1f58ea1b3b842181c7b5955158900e17ba
URL:
https://github.com/kamailio/kamailio/commit/a9807e1f58ea1b3b842181c7b595515…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2020-08-24T15:32:25+02:00
src/Makefile: update deb rules
* deb-stable rule should use buster nowadays
* deb rule should point to sid
pkg/kamailio/deb/debian is not suppose to be used directly is just
a base for creating all the different flavors
fixes #2432
---
Modified: src/Makefile
---
Diff:
https://github.com/kamailio/kamailio/commit/a9807e1f58ea1b3b842181c7b595515…
Patch:
https://github.com/kamailio/kamailio/commit/a9807e1f58ea1b3b842181c7b595515…
---
diff --git a/src/Makefile b/src/Makefile
index 2decc4d2cb..11be15fb2b 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -614,7 +614,7 @@ deb:
dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
else \
- ln -s pkg/$(MAIN_NAME)/deb/debian debian; \
+ ln -s pkg/$(MAIN_NAME)/deb/sid debian; \
dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
fi)
@@ -626,7 +626,7 @@ deb-stable:
dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
else \
- ln -s pkg/$(MAIN_NAME)/deb/jessie debian; \
+ ln -s pkg/$(MAIN_NAME)/deb/buster debian; \
dpkg-buildpackage -rfakeroot -tc -uc -us; \
rm debian; \
fi)