From 37fcec2554afcef385e3250f58d4fb9b4c6cfba4 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Fri, 18 Oct 2024 14:12:33 -0400 Subject: [PATCH] build: arch package won't install /bin --- res/dist/arch/PKGBUILD.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/dist/arch/PKGBUILD.in b/res/dist/arch/PKGBUILD.in index db3e5744f..38da2246d 100644 --- a/res/dist/arch/PKGBUILD.in +++ b/res/dist/arch/PKGBUILD.in @@ -32,7 +32,7 @@ options=('!debug') package() { # By default, `makepkg` will run from the `src` directory, which would # only install the binaries, and not the .desktop file, etc. To install - # everything, we need to set `--prefix`. + # everything, we need to set DESTDIR. cd $startdir - cmake --install . --prefix "$pkgdir" + DESTDIR=$pkgdir cmake --install . }