From 86f646beb3c528bda5416adf91059b1ba323a285 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Thu, 11 Apr 2019 15:46:24 -0700 Subject: [PATCH] Try to fix path to libvlc --- builders/windows-builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/windows-builder.py b/builders/windows-builder.py index 6cfd510..a3c91bb 100644 --- a/builders/windows-builder.py +++ b/builders/windows-builder.py @@ -382,7 +382,7 @@ class WindowsBuilder(Builder): copy(os.path.join(self.mutool_exe), os.path.join(self.dist_path, 'mutool.exe')) else: self._print('... WARNING: mutool.exe not found') - vlc_path = os.path.join(self.program_files, 'VideoLAN', 'VLC') + vlc_path = os.path.join('C:', 'Program Files', 'VideoLAN', 'VLC') for fname in ['libvlc.dll', 'libvlccore.dll']: self._print_verbose('... {}'.format(fname)) copy(os.path.join(vlc_path, fname), os.path.join(self.dist_path, fname))