From 0ee2298b82a20ab13da022e1991be13f5272d581 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 12 Dec 2011 14:08:55 -0800 Subject: cmake: fix QUIET arg usage on PKG_CHECK_MODULES --- gr-howto-write-a-block-cmake/cmake/Modules/FindGnuradioCore.cmake | 2 +- gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'gr-howto-write-a-block-cmake/cmake/Modules') diff --git a/gr-howto-write-a-block-cmake/cmake/Modules/FindGnuradioCore.cmake b/gr-howto-write-a-block-cmake/cmake/Modules/FindGnuradioCore.cmake index 34e85dbcf..b45cf95e6 100644 --- a/gr-howto-write-a-block-cmake/cmake/Modules/FindGnuradioCore.cmake +++ b/gr-howto-write-a-block-cmake/cmake/Modules/FindGnuradioCore.cmake @@ -1,5 +1,5 @@ INCLUDE(FindPkgConfig) -PKG_CHECK_MODULES(PC_GNURADIO_CORE gnuradio-core QUIET) +PKG_CHECK_MODULES(PC_GNURADIO_CORE QUIET gnuradio-core) FIND_PATH( GNURADIO_CORE_INCLUDE_DIRS diff --git a/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake b/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake index 190c2e339..56b8b1773 100644 --- a/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake +++ b/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake @@ -1,5 +1,5 @@ INCLUDE(FindPkgConfig) -PKG_CHECK_MODULES(PC_GRUEL gnuradio-core QUIET) +PKG_CHECK_MODULES(PC_GRUEL QUIET gnuradio-core) FIND_PATH( GRUEL_INCLUDE_DIRS -- cgit