head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.07.17.05.52.30; author wiz; state Exp; branches; next ; commitid uNS7RhemBLoq9YNG; desc @@ 1.1 log @webkit-gtk: fix cmake syntax error Broke build with cmake 4.4. Bump PKGREVISION. Clean up references to non-existent files while here. @ text @$NetBSD$ Fix cmake syntax. --- Source/cmake/WebKitMacros.cmake.orig 2026-07-17 05:18:50.633734793 +0000 +++ Source/cmake/WebKitMacros.cmake @@@@ -282,7 +282,7 @@@@ macro(_WEBKIT_EXECUTABLE_LINK_FRAMEWORK _target) get_property(_linked_into GLOBAL PROPERTY ${framework}_LINKED_INTO) # See if the executable is linking a framework that the specified framework is already linked into - if ((NOT _linked_into) OR (${framework} STREQUAL ${_linked_into}) OR (NOT ${_linked_into} IN_LIST ${_target}_FRAMEWORKS)) + if ((NOT _linked_into) OR (${framework} STREQUAL "${_linked_into}") OR (NOT "${_linked_into}" IN_LIST ${_target}_FRAMEWORKS)) list(APPEND ${_target}_PRIVATE_LIBRARIES WebKit::${framework}) # The WebKit:: alias targets do not propagate OBJECT libraries so the @