Skip to content

Commit

Permalink
treewide: fix build depends to refer to source package names
Browse files Browse the repository at this point in the history
Build depends must refer to source packages rather than binary package
names.

Signed-off-by: Matthias Schiffer <[email protected]>
  • Loading branch information
neocturne committed Jan 13, 2018
1 parent 3abf663 commit 37cf77d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions include/autotools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ ifneq ($(filter patch-libtool,$(PKG_FIXUP)),)
endif

ifneq ($(filter libtool,$(PKG_FIXUP)),)
PKG_BUILD_DEPENDS += libtool libintl libiconv
PKG_BUILD_DEPENDS += libtool gettext libiconv
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
Hooks/Configure/Pre += autoreconf_target
endif
endif

ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),)
PKG_BUILD_DEPENDS += libtool libintl libiconv
PKG_BUILD_DEPENDS += libtool gettext libiconv
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
Hooks/Configure/Pre += autoreconf_target
endif
Expand Down
2 changes: 1 addition & 1 deletion include/nls.mk
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ else
endif

PKG_CONFIG_DEPENDS += CONFIG_BUILD_NLS
PKG_BUILD_DEPENDS += !BUILD_NLS:libiconv !BUILD_NLS:libintl
PKG_BUILD_DEPENDS += !BUILD_NLS:libiconv !BUILD_NLS:gettext

ICONV_DEPENDS:=+BUILD_NLS:libiconv-full
ICONV_CFLAGS:=-I$(ICONV_PREFIX)/include
Expand Down
2 changes: 1 addition & 1 deletion package/network/config/ltq-adsl-app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ PKG_CONFIG_DEPENDS:=\
CONFIG_LTQ_DSL_ENABLE_SOAP \
CONFIG_LTQ_DSL_ENABLE_DSL_EVENT_POLLING

PKG_BUILD_DEPENDS:=TARGET_lantiq_xway:kmod-ltq-adsl-danube TARGET_lantiq_xway_legacy:kmod-ltq-adsl-danube TARGET_lantiq_ase:kmod-ltq-adsl-ase
PKG_BUILD_DEPENDS:=ltq-adsl

PKG_FLAGS:=nonshared

Expand Down
2 changes: 1 addition & 1 deletion package/network/config/ltq-vdsl-app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PKG_HASH:=da8bb929526a61aea0e153ef524331fcd472a1ebbc6d88ca017735a4f82ece02
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_BASE_NAME)-$(PKG_VERSION)
PKG_LICENSE:=BSD-2-Clause

PKG_BUILD_DEPENDS:=kmod-ltq-vdsl-vr9
PKG_BUILD_DEPENDS:=ltq-vdsl

PKG_FLAGS:=nonshared

Expand Down

0 comments on commit 37cf77d

Please sign in to comment.