Browse Source

dirs-uap: handle VLC_LIBEXEC_PATH when VLC_PKG_LIBEXEC_DIR is requested

It's undocumented but was mapped the same way in e23555302f.
mmdevice-clean/8
Steve Lhomme 6 months ago
parent
commit
f16d1f3c12
  1. 3
      src/win32/dirs-uap.c

3
src/win32/dirs-uap.c

@ -212,6 +212,9 @@ char *config_GetSysPath(vlc_sysdir_t type, const char *filename)
dir = config_GetLibDir();
break;
case VLC_PKG_LIBEXEC_DIR:
dir = getenv ("VLC_LIBEXEC_PATH");
if (dir)
return strdup( dir );
dir = config_GetLibexecDir();
break;
case VLC_SYSDATA_DIR:

Loading…
Cancel
Save