From b42b16add7a5bfe210aeb416fb203fc72dfedf96 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 24 Aug 2026 20:55:30 +0300 Subject: [PATCH] ports/sdl2-compat: Use -f when linking pc files --- ports/sdl2-compat/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/sdl2-compat/build.sh b/ports/sdl2-compat/build.sh index 6edf3f90..65cfc591 100755 --- a/ports/sdl2-compat/build.sh +++ b/ports/sdl2-compat/build.sh @@ -20,5 +20,5 @@ build() { install() { DESTDIR="$DESTDIR" cmake --install build || exit 1 - ln -s sdl2-compat.pc "$DESTDIR"/usr/lib/pkgconfig/sdl2.pc || exit 1 + ln -sf sdl2-compat.pc "$DESTDIR"/usr/lib/pkgconfig/sdl2.pc || exit 1 }