diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-04 20:18:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-04 20:18:35 +0000 |
commit | d676499260575d8eab370c9a65264597b0559e45 (patch) | |
tree | 884f06586a5127f12bb9116fc592ed7d89abdc92 /openwrt/target/linux/rules.mk | |
parent | 023a3a77a9f67c6432763bfcbd1243cf003055a2 (diff) |
change kernel package name to kernel-VERSION-BOARD to work around ipkg bug
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1340 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux/rules.mk')
-rw-r--r-- | openwrt/target/linux/rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/target/linux/rules.mk b/openwrt/target/linux/rules.mk index 9446c343f..75a96b4e6 100644 --- a/openwrt/target/linux/rules.mk +++ b/openwrt/target/linux/rules.mk @@ -6,9 +6,9 @@ KDEPEND_$(1):=$($(4)) endif ifeq ($$(strip $(5)),) -IDEPEND_$(1):=kernel ($(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)) +IDEPEND_$(1):=kernel-$(LINUX_VERSION)-$(BOARD) ($(PKG_RELEASE)) else -IDEPEND_$(1):=kernel ($(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)), $(5) +IDEPEND_$(1):=kernel-$(LINUX_VERSION)-$(BOARD) ($(PKG_RELEASE)), $(5) endif PKG_$(1) := $(PACKAGE_DIR)/kmod-$(2)_$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)_$(ARCH).ipk |