diff options
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/package-notes.mk | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index bb6ecd3..e215c92 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +package-notes (0.13) unstable; urgency=medium + + * debian/package-notes.mk: skip when linking with llvm + + -- Luca Boccassi <bluca@debian.org> Sun, 02 Jun 2024 00:03:26 +0100 + package-notes (0.12-0.0~progress7.99u1) graograman-backports; urgency=medium * Uploading to graograman-backports, remaining changes: diff --git a/debian/package-notes.mk b/debian/package-notes.mk index aabc6dc..2cb1339 100644 --- a/debian/package-notes.mk +++ b/debian/package-notes.mk @@ -2,6 +2,8 @@ # Include from debian/rules to use with dh_package_notes. # See dh_package_notes(1) for details +# llvm does not support spec files +ifeq ( ,$(filter lld, $(LD))) # binutils 2.39 is required for --package-metadata= ifeq (0, $(shell dpkg --compare-versions $$(dpkg-query -f '$${Version}' -W binutils) ge 2.39; echo $$?)) include /usr/share/dpkg/vendor.mk @@ -18,4 +20,5 @@ export DEB_SOURCE_PACKAGE_NAME=$(shell dpkg-parsechangelog -S Source) export DEB_VENDOR export DEB_LDFLAGS_MAINT_APPEND+= -specs=/usr/share/debhelper/dh_package_notes/debian-package-notes.specs endif +endif |