From 816c29cacc08ddacd005a95e08e22645bccf832d Mon Sep 17 00:00:00 2001 From: Timo Teräs Date: Sat, 8 Feb 2020 00:28:41 +0200 Subject: main/gcc: fix cross-compiler so script generation The quoting was converted incorrectly and produced invalid files. Fixes: bcca4ab2 "main/gcc: Fix most linting issues" --- main/gcc/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/gcc/APKBUILD') diff --git a/main/gcc/APKBUILD b/main/gcc/APKBUILD index 349e31d98ea..2f62f489723 100644 --- a/main/gcc/APKBUILD +++ b/main/gcc/APKBUILD @@ -385,7 +385,7 @@ package() { # linker finds the libs from relocated sysroot for so in "$pkgdir"/usr/"$CTARGET"/lib/*.so; do if [ -h "$so" ]; then - local _real=$(basename "$(readlink \"$so\")") + local _real=$(basename "$(readlink "$so")") rm -f "$so" echo "GROUP ($_real)" > "$so" fi -- cgit v1.2.3