From 5f9583bd084863c2f839e962a177624d6182add0 Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Wed, 1 Jul 2020 23:43:27 +0200 Subject: [PATCH] fix: disable wiringPi debug for prod --- controller/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/PKGBUILD b/controller/PKGBUILD index 67bc811..320bd31 100644 --- a/controller/PKGBUILD +++ b/controller/PKGBUILD @@ -30,7 +30,7 @@ prepare() { build() { cd "controller/build" || exit 1 - cmake -DWIRING_PI_DEBUG=ON .. + cmake .. make }