head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.09.06.09.43.25; author markd; state Exp; branches; next ; commitid iiMgCaMo7L43NxUG; desc @@ 1.1 log @extra-cmake-modules: fix paths in FindFFmpeg.cmake @ text @$NetBSD$ Fix broken prefix --- find-modules/FindFFmpeg.cmake.orig 2026-08-07 20:38:40.000000000 +0000 +++ find-modules/FindFFmpeg.cmake @@@@ -141,16 +141,16 @@@@ macro(find_component _component _pkgconf find_path(${_component}_INCLUDE_DIRS ${_header} HINTS - ${PC_LIB${_component}_INCLUDEDIR} - ${PC_LIB${_component}_INCLUDE_DIRS} + ${PC_${_component}_INCLUDEDIR} + ${PC_${_component}_INCLUDE_DIRS} PATH_SUFFIXES ffmpeg ) find_library(${_component}_LIBRARIES NAMES ${_library} HINTS - ${PC_LIB${_component}_LIBDIR} - ${PC_LIB${_component}_LIBRARY_DIRS} + ${PC_${_component}_LIBDIR} + ${PC_${_component}_LIBRARY_DIRS} ) set(${_component}_DEFINITIONS ${PC_${_component}_CFLAGS_OTHER} CACHE STRING "The ${_component} CFLAGS.") @