Merge pull request #10496 from CvH/133.0/fix_unpack

scripts/unpack: fix missing square bracket
This commit is contained in:
Christian Hewitt
2025-09-16 20:14:22 +04:00
committed by GitHub

View File

@@ -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