From f1916d682f12c739693e6465b0848137819e674e Mon Sep 17 00:00:00 2001 From: CvH Date: Tue, 16 Sep 2025 18:09:56 +0200 Subject: [PATCH] scripts/unpack: fix missing square bracket --- scripts/unpack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/unpack b/scripts/unpack index 153209557e..0c1ee0db55 100755 --- a/scripts/unpack +++ b/scripts/unpack @@ -206,7 +206,7 @@ if { [ -d "${SOURCES}/${PKG_NAME}" ] || [ -d "${PKG_DIR}/sources" ]; } || pkg_ca build_msg "CLR_FIXCONFIG" "FIXCONFIG" "${config}" for file in config.guess config.sub; do - if [ -f "${config}/${file}" && [ -f "${TOOLCHAIN}/configtools/${file}" ]; then + if [ -f "${config}/${file}" ] && [ -f "${TOOLCHAIN}/configtools/${file}" ]; then cp -f "${TOOLCHAIN}/configtools/${file}" "${config}/" fi done