summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Franck2025-11-05 15:34:30 +0000
committerRobert Marko2025-11-07 11:23:52 +0000
commit5f99bcdbecbbf816c0fcddd7fd32f5a9d511791b (patch)
tree93dfa3f8e585773fbce45404f0d6191d620f74c3
parent23c01459631b2babffd5f408624d25a5e99f40ba (diff)
downloadopenwrt-5f99bcdbecbbf816c0fcddd7fd32f5a9d511791b.tar.gz
package: xcrypt: add missing PKG_NAME
PKG_NAME was lost during package migration from "packages" feed to "main" feed. Signed-off-by: Matthias Franck <matthias.franck@softathome.com> Link: https://github.com/openwrt/openwrt/pull/20662 Signed-off-by: Robert Marko <robimarko@gmail.com>
-rw-r--r--package/libs/xcrypt/libcrypt-compat/Makefile1
-rw-r--r--package/libs/xcrypt/libxcrypt/Makefile1
2 files changed, 2 insertions, 0 deletions
diff --git a/package/libs/xcrypt/libcrypt-compat/Makefile b/package/libs/xcrypt/libcrypt-compat/Makefile
index a503523267..fad00456f9 100644
--- a/package/libs/xcrypt/libcrypt-compat/Makefile
+++ b/package/libs/xcrypt/libcrypt-compat/Makefile
@@ -1,6 +1,7 @@
include $(TOPDIR)/rules.mk
include ../libxcrypt-common.mk
+PKG_NAME:=libcrypt-compat
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/libcrypt-compat/$(PKG_SOURCE_NAME)-$(PKG_VERSION)
diff --git a/package/libs/xcrypt/libxcrypt/Makefile b/package/libs/xcrypt/libxcrypt/Makefile
index fea6b4854b..b605cac16f 100644
--- a/package/libs/xcrypt/libxcrypt/Makefile
+++ b/package/libs/xcrypt/libxcrypt/Makefile
@@ -1,6 +1,7 @@
include $(TOPDIR)/rules.mk
include ../libxcrypt-common.mk
+PKG_NAME:=libxcrypt
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_NAME)-$(PKG_VERSION)