From 5f99bcdbecbbf816c0fcddd7fd32f5a9d511791b Mon Sep 17 00:00:00 2001 From: Matthias Franck Date: Wed, 5 Nov 2025 16:34:30 +0100 Subject: [PATCH] package: xcrypt: add missing PKG_NAME PKG_NAME was lost during package migration from "packages" feed to "main" feed. Signed-off-by: Matthias Franck Link: https://github.com/openwrt/openwrt/pull/20662 Signed-off-by: Robert Marko --- package/libs/xcrypt/libcrypt-compat/Makefile | 1 + package/libs/xcrypt/libxcrypt/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/package/libs/xcrypt/libcrypt-compat/Makefile b/package/libs/xcrypt/libcrypt-compat/Makefile index a503523267d..fad00456f98 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 fea6b4854b5..b605cac16f6 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) -- 2.47.3