diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2022-12-12 15:01:05 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2022-12-12 15:01:05 +0100 |
commit | 1d7b62209ea19ea676f446d89f67be009efcb953 (patch) | |
tree | 086607cefad8832dda5ad93721d1bec72b55b6c3 /debian/rules | |
parent | 21a0b1d823fec6f2970e37a7d493ba97a632c55d (diff) |
d/rules: Use DEB_VERSION_UPSTREAM instead of VERSION
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 5a0855a..b34aa21 100755 --- a/debian/rules +++ b/debian/rules @@ -5,6 +5,8 @@ # hardening export DEB_BUILD_MAINT_OPTIONS = hardening=+all +include /usr/share/dpkg/default.mk + ifneq ($(findstring $(DEB_BUILD_ARCH), mips mipsel),) CFLAGS += -mplt endif @@ -22,4 +24,4 @@ VERSION = $(shell head -n1 debian/changelog | sed -e 's/.*(//;s/-.*).*//;s/\+/\- override_dh_makeshlibs: dh_makeshlibs - dpkg-gensymbols -v$(VERSION) -plibunistring5 + dpkg-gensymbols -v$(DEB_VERSION_UPSTREAM) -plibunistring5 |