SDL: cmake: don't quote INOTIFY_INCLUDE_DIRS

From b60084eb0b8ca4e96d2c927e4667801236f14c74 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 13 Jan 2023 18:33:51 +0100
Subject: [PATCH] cmake: don't quote INOTIFY_INCLUDE_DIRS

---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 48d08cbf9cb3..28c8cb2547fe 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1520,7 +1520,7 @@ elseif(UNIX AND NOT APPLE AND NOT RISCOS AND NOT HAIKU)
         pkg_search_module(INOTIFY libinotify)
         if(INOTIFY_FOUND)
           set(HAVE_INOTIFY 1)
-          target_include_directories(sdl-build-options INTERFACE "${INOTIFY_INCLUDE_DIRS}")
+          target_include_directories(sdl-build-options INTERFACE ${INOTIFY_INCLUDE_DIRS})
           list(APPEND SDL_EXTRA_LIBS ${INOTIFY_LIBRARIES})
         endif()
       endif()