From cfb93ec5e0e93ce539c5a5b12fdc38195c71ab49 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sun, 30 Jan 2022 15:56:29 +0000 Subject: [PATCH] community/io to 2017.09.06-5 --- community/io/PKGBUILD | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/community/io/PKGBUILD b/community/io/PKGBUILD index 9d5ac4e03..37733de6c 100644 --- a/community/io/PKGBUILD +++ b/community/io/PKGBUILD @@ -8,7 +8,7 @@ pkgname=io pkgver=2017.09.06 -pkgrel=4 +pkgrel=5 pkgdesc='IO programming language' arch=(x86_64) url='https://iolanguage.com/' @@ -29,13 +29,15 @@ prepare() { } build() { - cmake \ + cmake \ -B build \ - -S $pkgname \ -D CMAKE_BUILD_TYPE=Release \ -D CMAKE_INSTALL_PREFIX=/usr \ - -D CMAKE_SKIP_RPATH=1 - # ninja requires "-w dupbuild=warn" and/or -w "phonycycle=warn" and still gives an error + -D CMAKE_SKIP_RPATH=1 \ + -S $pkgname + + # make is used instead of ninja, because ninja results in errors, + # even with '-w dupbuild=warn' and/or -w 'phonycycle=warn' make -C build }