blob: 9d89f0fee4eecc6dc11f1032f1f7ea8ef91bca3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include $(srcdir)/mk/vendor.mk
TEST_DEB_VENDOR = Debian
TEST_DEB_PARENT_VENDOR =
test_vars := \
DEB_VENDOR \
DEB_PARENT_VENDOR \
# EOL
test: $(test_vars)
: # Test the dpkg_vendor_derives_from macro.
test "$(shell $(call dpkg_vendor_derives_from,debian))" = "yes"
$(test_vars):
: # Test $@ Make variable.
test '$($@)' = '$(TEST_$@)'
|