Browse Source

win32: dirs: 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
7c04139dbd
  1. 3
      src/win32/dirs.c

3
src/win32/dirs.c

@ -101,6 +101,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