[openwrt/openwrt] lua5.3: fix typo calling lua53 instead of lua5.3 for Package Default
LEDE Commits
lede-commits at lists.infradead.org
Sun Dec 10 02:47:27 PST 2023
ansuel pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/81b7da1052481f9854700895aa903094d7fe4c0c
commit 81b7da1052481f9854700895aa903094d7fe4c0c
Author: Christian Marangi <ansuelsmth at gmail.com>
AuthorDate: Sun Dec 10 11:43:45 2023 +0100
lua5.3: fix typo calling lua53 instead of lua5.3 for Package Default
Fix typo calling lua53 instead of lua5.3 for Package Default definition.
This cause only missing description of the package and doesn't cause
any build regression.
Fixes: c52ca08d4008 ("lua5.3: build shared library")
Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
(cherry picked from commit 25e215c14ee6c9f3d54cd1da46a48d9ffe6b254e)
---
package/utils/lua5.3/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/utils/lua5.3/Makefile b/package/utils/lua5.3/Makefile
index d43ac59ed4..0a295040f2 100644
--- a/package/utils/lua5.3/Makefile
+++ b/package/utils/lua5.3/Makefile
@@ -30,7 +30,7 @@ define Package/lua5.3/Default
SUBMENU:=Lua
SECTION:=lang
CATEGORY:=Languages
- TITLE:=Lua programming language
+ TITLE:=Lua programming language (version 5.3)
URL:=https://www.lua.org/
MAINTAINER:=Jo-Philipp Wich <jo at mein.io>
endef
@@ -42,7 +42,7 @@ define Package/lua5.3/Default/description
endef
define Package/liblua5.3
-$(call Package/lua53/Default)
+$(call Package/lua5.3/Default)
SUBMENU:=
SECTION:=libs
CATEGORY:=Libraries
@@ -51,7 +51,7 @@ $(call Package/lua53/Default)
endef
define Package/liblua5.3/description
-$(call Package/lua53/Default/description)
+$(call Package/lua5.3/Default/description)
This package contains the Lua shared libraries, needed by other programs.
endef
More information about the lede-commits
mailing list