[arch-commits] Commit in qpwgraph/trunk (PKGBUILD)

Jonas Witschel diabonas at gemini.archlinux.org
Thu Apr 7 09:45:30 UTC 2022


    Date: Thursday, April 7, 2022 @ 09:45:30
  Author: diabonas
Revision: 1182781

qpwgraph: set CMAKE_BUILD_TYPE=None

Upstream currently does not set a default build type, so this change is not
functionally necessary. However the current CMake package guidlines recommend
always setting CMAKE_BUILD_TYPE to be on the safe side, e.g. if upstream later
decides to set a default build type.

Modified:
  qpwgraph/trunk/PKGBUILD

----------+
 PKGBUILD |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-04-07 09:40:13 UTC (rev 1182780)
+++ PKGBUILD	2022-04-07 09:45:30 UTC (rev 1182781)
@@ -13,7 +13,8 @@
 sha512sums=('d039f0aec37b078170b4b0d48d905857c440fc977d24a566e9aad53955ba1301b792fcff1188e673b7fef17cfb74442b79283ce4af3f419e3bf1b9f9c4046bc9')
 
 build() {
-	cmake -B build -S "$pkgname-v$pkgver" -DCMAKE_INSTALL_PREFIX=/usr -DCONFIG_WAYLAND=ON
+	cmake -B build -S "$pkgname-v$pkgver" -DCMAKE_BUILD_TYPE=None \
+	      -DCMAKE_INSTALL_PREFIX=/usr -DCONFIG_WAYLAND=ON
 	cmake --build build
 }
 



More information about the arch-commits mailing list