Skip to content

Commit

Permalink
Merge r224725 - [GTK] PlatformGTK.cmake: use the PKG_CONFIG_EXECUTABL…
Browse files Browse the repository at this point in the history
…E variable

https://bugs.webkit.org/show_bug.cgi?id=179547

Patch by Helmut Grohne <helmut@subdivi.de> on 2017-11-11
Reviewed by Michael Catanzaro.

* PlatformGTK.cmake: Use PKG_CONFIG_EXECUTABLE instead of
hardcoding the executable name.
  • Loading branch information
helmutg authored and carlosgcampos committed Dec 19, 2017
1 parent 6fb6902 commit ff12cf4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,13 @@
2017-11-11 Helmut Grohne <helmut@subdivi.de>

[GTK] PlatformGTK.cmake: use the PKG_CONFIG_EXECUTABLE variable
https://bugs.webkit.org/show_bug.cgi?id=179547

Reviewed by Michael Catanzaro.

* PlatformGTK.cmake: Use PKG_CONFIG_EXECUTABLE instead of
hardcoding the executable name.

2017-12-04 Carlos Garcia Campos <cgarcia@igalia.com>

[GStreamer] More leaks in TextCombinerGStreamer
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/PlatformGTK.cmake
Expand Up @@ -188,7 +188,7 @@ if (USE_GEOCLUE2)
list(APPEND WebCore_DERIVED_SOURCES
${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface.c
)
execute_process(COMMAND pkg-config --variable dbus_interface geoclue-2.0 OUTPUT_VARIABLE GEOCLUE_DBUS_INTERFACE)
execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable dbus_interface geoclue-2.0 OUTPUT_VARIABLE GEOCLUE_DBUS_INTERFACE)
add_custom_command(
OUTPUT ${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface.c ${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface.h
COMMAND gdbus-codegen --interface-prefix org.freedesktop.GeoClue2. --c-namespace Geoclue --generate-c-code ${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface ${GEOCLUE_DBUS_INTERFACE}
Expand Down

0 comments on commit ff12cf4

Please sign in to comment.