diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 20967dcd688f..811796ae261f 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,13 @@ +2017-11-11 Helmut Grohne + + [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 [GStreamer] More leaks in TextCombinerGStreamer diff --git a/Source/WebCore/PlatformGTK.cmake b/Source/WebCore/PlatformGTK.cmake index 6dd96ac228b3..c95a24e2d6bd 100644 --- a/Source/WebCore/PlatformGTK.cmake +++ b/Source/WebCore/PlatformGTK.cmake @@ -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}