From c2a512dade2edd20a750d925c2e351e757543ebd Mon Sep 17 00:00:00 2001 From: omni Date: Mon, 12 Aug 2024 00:07:35 +0000 Subject: [PATCH] testing/cc65: fix install dir build with PREFIX=/usr and install with PREFIX="$pkgdir/usr" --- testing/cc65/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/cc65/APKBUILD b/testing/cc65/APKBUILD index e73de9d54cc..49392b9be27 100644 --- a/testing/cc65/APKBUILD +++ b/testing/cc65/APKBUILD @@ -12,7 +12,7 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/cc65/cc65/archive/V$pkgver.t build() { # the build system does not work in parallel - make -j1 + PREFIX=/usr make -j1 } check() { @@ -21,7 +21,7 @@ check() { } package() { - PREFIX="$pkgdir" make install + PREFIX="$pkgdir/usr" make install } sha512sums="