From 1c9fe80ed48af1a1a11ee113f9a98a81b3ecf5f5 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 25 Nov 2006 19:45:22 +0000 Subject: fix pesky kmod-* ipkg install bug SVN-Revision: 5639 --- include/package.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/package.mk') diff --git a/include/package.mk b/include/package.mk index 4e67e73..6960646 100644 --- a/include/package.mk +++ b/include/package.mk @@ -208,11 +208,11 @@ define BuildPackage echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control ( \ - DEPENDS=; \ + DEPENDS='$(EXTRA_DEPENDS)'; \ for depend in $$(filter-out @%,$$(IDEPEND_$(1))); do \ DEPENDS=$$$${DEPENDS:+$$$$DEPENDS, }$$$${depend##+}; \ done; \ - echo "Depends: $(EXTRA_DEPENDS) $$$$DEPENDS" >> $$(IDIR_$(1))/CONTROL/control; \ + echo "Depends: $$$$DEPENDS" >> $$(IDIR_$(1))/CONTROL/control; \ ) echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control -- cgit v1.1