diff options
author | Colby Whitney <colby.whitney@luxul.com> | 2019-07-22 10:16:14 -0600 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-08-16 22:53:06 +0200 |
commit | 762fa36b6f5269a797c8dbd816d547c290966dd2 (patch) | |
tree | 0ada8336ec53f0490c3cfd3e70e3928539f0b3d5 /package | |
parent | 4b5df88f1cd3cf8bbe51558fff943af9dcce00ff (diff) | |
download | upstream-762fa36b6f5269a797c8dbd816d547c290966dd2.tar.gz upstream-762fa36b6f5269a797c8dbd816d547c290966dd2.tar.bz2 upstream-762fa36b6f5269a797c8dbd816d547c290966dd2.zip |
lua5.3: include hpp header
The install was missing the hpp header. Adding that in.
Signed-off-by: Colby Whitney <colby.whitney@luxul.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/utils/lua5.3/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/utils/lua5.3/Makefile b/package/utils/lua5.3/Makefile index 99e7a8309a..c9e9bebb1a 100644 --- a/package/utils/lua5.3/Makefile +++ b/package/utils/lua5.3/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lua PKG_VERSION:=5.3.5 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.lua.org/ftp/ \ @@ -123,6 +123,7 @@ endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include/lua5.3 $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/include/lua5.3/lua{,lib,conf}.h $(1)/usr/include/lua5.3/ + $(CP) $(PKG_INSTALL_DIR)/usr/include/lua5.3/lua.hpp $(1)/usr/include/lua5.3/ $(CP) $(PKG_INSTALL_DIR)/usr/include/lua5.3/lauxlib.h $(1)/usr/include/lua5.3/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblua5.3.{a,so*} $(1)/usr/lib/ |