diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-06-04 15:12:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-06-04 15:12:44 +0000 |
commit | c8ed362edd1a67cfcb1c84b678846fa34e661d08 (patch) | |
tree | 8a95975cb365200ae47f374a47068b6d152bca15 /package | |
parent | 7bb65fb9d7860faa4b9b1e07790fb5823a0249e2 (diff) | |
download | upstream-c8ed362edd1a67cfcb1c84b678846fa34e661d08.tar.gz upstream-c8ed362edd1a67cfcb1c84b678846fa34e661d08.tar.bz2 upstream-c8ed362edd1a67cfcb1c84b678846fa34e661d08.zip |
move the uci lua plugin to /usr/lib/lua instead of /usr/lib/lua/5.1
SVN-Revision: 11353
Diffstat (limited to 'package')
-rw-r--r-- | package/uci/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uci/Makefile b/package/uci/Makefile index 485ba5ae3e..babc248db8 100644 --- a/package/uci/Makefile +++ b/package/uci/Makefile @@ -73,8 +73,8 @@ define Package/libuci/install endef define Package/libuci-lua/install - $(INSTALL_DIR) $(1)/usr/lib/lua/5.1 - $(CP) $(PKG_BUILD_DIR)/lua/uci.so $(1)/usr/lib/lua/5.1 + $(INSTALL_DIR) $(1)/usr/lib/lua + $(CP) $(PKG_BUILD_DIR)/lua/uci.so $(1)/usr/lib/lua/ endef define Package/uci/install |