Skip to content
Snippets Groups Projects
Commit c6ebce70 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

build: propagate package conflicts to opkg metadata


Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>

SVN-Revision: 42771
parent 5e478967
No related branches found
No related tags found
No related merge requests found
......@@ -160,6 +160,11 @@ ifeq ($(DUMP),)
DEPENDS=$$$${DEPENDS:+$$$$DEPENDS, }$$$${depend##+}; \
done; \
[ -z "$$$$DEPENDS" ] || echo "Depends: $$$$DEPENDS"; \
CONFLICTS=''; \
for conflict in $(CONFLICTS); do \
CONFLICTS=$$$${CONFLICTS:+$$$$CONFLICTS, }$$$$conflict; \
done; \
[ -z "$$$$CONFLICTS" ] || echo "Conflicts: $$$$CONFLICTS"; \
$(if $(PROVIDES), echo "Provides: $(PROVIDES)"; ) \
echo "Source: $(SOURCE)"; \
$(if $(PKG_LICENSE), echo "License: $(PKG_LICENSE)"; ) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment