From 4ce81b59fbbc1e709726bdc051e7668cd3e6f7fa Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Fri, 18 Oct 2024 10:30:25 +0100 Subject: [PATCH] ci: Use `cmake` instead of `make` directly for Arch package --- 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 89db2d1cb..db3e5744f 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 run `make install` with the root Makefile. + # everything, we need to set `--prefix`. cd $startdir - make install DESTDIR=$pkgdir + cmake --install . --prefix "$pkgdir" }