From 5c041836843bda10991101e13e4c7914efee1a41 Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Wed, 27 Apr 2022 14:53:17 +0200 Subject: [PATCH] Fix inversion. (#1883) --- scripts/build-catalogue.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/build-catalogue.in b/scripts/build-catalogue.in index de4bcd1c..ed32c066 100755 --- a/scripts/build-catalogue.in +++ b/scripts/build-catalogue.in @@ -67,8 +67,7 @@ also <name>_gpu.cpp and <name>_gpu.cu (if not given -C).''') help='Enable GPU support, valid options: cuda|hip|cuda-clang.') parser.add_argument('-C', '--no-cpu', - action='store_false', - default=True, + action='store_true', help='Disable CPU support.') parser.add_argument('-d', '--debug', -- GitLab