fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/41173?usp=email )
Change subject: debian: fixup: add missing libsctp dependency
......................................................................
debian: fixup: add missing libsctp dependency
I found `${libsctp:Version}` in `debian/control` of the erlang package
(https://salsa.debian.org/erlang-team/packages/erlang). As it turns
out, this is not a standard debhelper substvar (like `${shlibs:Depends}`
or `${python3:Depends}`), but a custom one defined in `debian/rules`:
dh_gencontrol -a -- -Vlibsctp:Version='$(LIBSCTPDEP)'
Thus in our case it yields nothing. Use the package name instead.
Change-Id: Ia74d75e86b1436fc7dcdfa40d90c7e0c2e5648a1
Fixes: 9455ca1 ("debian: add missing libsctp dependency")
---
M debian/control
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-s1gw
refs/changes/73/41173/1
diff --git a/debian/control b/debian/control
index 515e3b2..018077a 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
- ${libsctp:Version}
+ libsctp1
Suggests: osmo-s1gw-cli
Multi-Arch: foreign
Description: Osmocom S1 gateway
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/41173?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: erlang/osmo-s1gw
Gerrit-Branch: master
Gerrit-Change-Id: Ia74d75e86b1436fc7dcdfa40d90c7e0c2e5648a1
Gerrit-Change-Number: 41173
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <[email protected]>