From a878cd3191844ef890f1fa5db126956592842425 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 12 Apr 2023 19:01:57 +0200 Subject: [PATCH] posix-h4: fix portaudio detection --- port/posix-h4/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/posix-h4/CMakeLists.txt b/port/posix-h4/CMakeLists.txt index fc9781632..678062e8b 100644 --- a/port/posix-h4/CMakeLists.txt +++ b/port/posix-h4/CMakeLists.txt @@ -21,7 +21,7 @@ endif() find_package(PkgConfig QUIET) # portaudio -if (PgConfig_FOUND) +if (PkgConfig_FOUND) pkg_check_modules(PORTAUDIO REQUIRED portaudio-2.0) if(PORTAUDIO_FOUND) message("HAVE_PORTAUDIO")