From 681c175f905d118e98c046a6e7d19032aecb36af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Fri, 14 Sep 2018 03:41:21 +0100 Subject: [PATCH] Update plugins.example/README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib428859b75e1c196cf9fa81ebae4969bbce079f2 Reviewed-on: https://code.wireshark.org/review/30396 Reviewed-by: João Valverde --- doc/plugins.example/README | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/plugins.example/README b/doc/plugins.example/README index b20a5d12bf..0f44036a18 100644 --- a/doc/plugins.example/README +++ b/doc/plugins.example/README @@ -11,8 +11,8 @@ $ cmake .. $ make $ sudo make install -If your wireshark.pc file is not in one of the standard pkg-config search paths -you will have to tell pkg-config where to find it. Arguably the easiest way to -do so is setting PKG_CONFIG_PATH in your build environment, for example: +If your WiresharkConfig.cmake file is not in one of the standard cmake search +paths you will have to tell cmake where to find it. You can do so using +CMAKE_PREFIX_PATH, for example -$ export PKG_CONFIG_PATH="/usr/local/lib64/pkgconfig" +$ cmake -DCMAKE_PREFIX_PATH="/opt/wireshark" ..