1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-16 12:25:28 +03:00

build: add a dependency on libc to all non-kernel packages

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32171 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2012-06-10 20:27:37 +00:00
parent bc38f26d42
commit bc5ad537db
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,12 @@
# See /LICENSE for more information. # See /LICENSE for more information.
# #
ifneq ($(PKG_NAME),toolchain)
PKG_FIXUP_DEPENDS = $(if $(filter kmod-%,$(1)),$(2),+libc $(filter-out +libc,$(2)))
else
PKG_FIXUP_DEPENDS = $(2)
endif
define Package/Default define Package/Default
CONFIGFILE:= CONFIGFILE:=
SECTION:=opt SECTION:=opt

View File

@ -30,7 +30,7 @@ $(if $(MENU),Menu: $(MENU)
)$(if $(DEFAULT),Default: $(DEFAULT) )$(if $(DEFAULT),Default: $(DEFAULT)
)$(if $(findstring $(PREREQ_CHECK),1),Prereq-Check: 1 )$(if $(findstring $(PREREQ_CHECK),1),Prereq-Check: 1
)Version: $(VERSION) )Version: $(VERSION)
Depends: $(DEPENDS) Depends: $(call PKG_FIXUP_DEPENDS,$(1),$(DEPENDS))
Menu-Depends: $(MDEPENDS) Menu-Depends: $(MDEPENDS)
Provides: $(PROVIDES) Provides: $(PROVIDES)
$(if $(VARIANT),Build-Variant: $(VARIANT) $(if $(VARIANT),Build-Variant: $(VARIANT)