From: George Sapkin Date: Mon, 10 Aug 2026 15:29:57 +0000 (+0300) Subject: golang: remove redundant quotes in extra_provides X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d2a4964a1a50129e174bc4f3bc87b4ae389991e6;p=openwrt-packages.git golang: remove redundant quotes in extra_provides Fixes: a6e94447f ("golang: fix missing dependency check") Signed-off-by: George Sapkin --- diff --git a/lang/golang/golang-version.mk b/lang/golang/golang-version.mk index 335969a62..4bcc5dc79 100644 --- a/lang/golang/golang-version.mk +++ b/lang/golang/golang-version.mk @@ -295,5 +295,5 @@ endef # src/debug contains ELF executables as test data and they reference these # libraries we need to call this to pass CheckDependencies in package-pack.mk define Package/$(PKG_NAME)-tests/extra_provides - echo 'libc.so.6' libstdc++.so.6' libtiff.so.6' | tr ' ' '\n' + echo 'libc.so.6 libstdc++.so.6 libtiff.so.6' | tr ' ' '\n' endef