summaryrefslogtreecommitdiff
path: root/scripts/mk
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2018-11-16 04:15:13 +0100
committerGuillem Jover <guillem@debian.org>2019-01-15 04:49:03 +0100
commit37dd4ce62e0925967c59daec130540d2fa0402d6 (patch)
treeab7c424610b4951265f5b347e7cc459f33077523 /scripts/mk
parent08911c47fdabf401dc3a4d7fffd324024c51a1ea (diff)
downloaddpkg-37dd4ce62e0925967c59daec130540d2fa0402d6.tar.gz
scripts/mk: Fix dpkg_vendor_derives_from macro documentation
Add a missing comma, and $(shell) make function invocation. Closes: #913816 Signed-off-by: Guillem Jover <guillem@debian.org>
Diffstat (limited to 'scripts/mk')
-rw-r--r--scripts/mk/vendor.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mk/vendor.mk b/scripts/mk/vendor.mk
index aa75cd6fc..fe06828f5 100644
--- a/scripts/mk/vendor.mk
+++ b/scripts/mk/vendor.mk
@@ -6,7 +6,7 @@
# The snippet also defines a macro "dpkg_vendor_derives_from" that you can
# use to verify if the current vendor derives from another vendor with a
# simple test like this one:
-# ifeq ($(call dpkg_vendor_derives_from ubuntu),yes)
+# ifeq ($(shell $(call dpkg_vendor_derives_from,ubuntu)),yes)
# ...
# endif