Changeset 3588


Ignore:
Timestamp:
Jan 31, 2023, 2:45:33 PM (2 years ago)
Author:
bird
Message:

LIBSDL2.kmk: Missed one SDL -> SDL2 dir check. Switched from ifeq+$(wildcard ) to if+exists() to do the check.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/sdks/LIBSDL2.kmk

    r3587 r3588  
    143143 # General Properties used by kBuild
    144144 ifndef SDK_LIBSDL2_INCS
    145   ifneq ($(wildcard $(PATH_SDK_LIBSDL2)/include/SDL/),)
     145  if exists("$(PATH_SDK_LIBSDL2)/include/SDL2/")
    146146   SDK_LIBSDL2_INCS := $(PATH_SDK_LIBSDL2)/include/SDL2
    147147  else
Note: See TracChangeset for help on using the changeset viewer.