diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-10-14 13:01:06 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-10-14 13:01:06 +0000 |
commit | 8833e789ccb982b4584e7270e4f346bccc35d65a (patch) | |
tree | 854c3bcbb1ae402922f438288e55288e902e44a2 | |
parent | cde419ebfc0887286662288c15afe3ef442c4bf4 (diff) | |
download | upstream-8833e789ccb982b4584e7270e4f346bccc35d65a.tar.gz upstream-8833e789ccb982b4584e7270e4f346bccc35d65a.tar.bz2 upstream-8833e789ccb982b4584e7270e4f346bccc35d65a.zip |
ubox: fix extroot after kmodloader changes
The kmodloader executable disregarded the global directory prefix in
scan_module_folder() leading to a broken extroot for non-builtin modules.
Update to current git head to fix the prefix handling again.
SVN-Revision: 38392
-rw-r--r-- | package/system/ubox/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/system/ubox/Makefile b/package/system/ubox/Makefile index 879108ba0c..1bad13a65d 100644 --- a/package/system/ubox/Makefile +++ b/package/system/ubox/Makefile @@ -1,13 +1,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ubox -PKG_VERSION:=2013-09-29 +PKG_VERSION:=2013-10-14 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/luci2/ubox.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=887256e92838ef94eeea8d7ba06ff078c7e05296 +PKG_SOURCE_VERSION:=f56267fc14f39f055bc287658fb5200e9cb40784 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz CMAKE_INSTALL:=1 |