diff options
author | L. E. Segovia <amy@centricular.com> | 2025-06-30 16:31:28 -0300 |
---|---|---|
committer | Backport Bot <gitlab-backport-bot@gstreamer-foundation.org> | 2025-06-30 23:53:04 +0100 |
commit | 657c933d1af846591f25fc3a9bde117200f4e5c9 (patch) | |
tree | a842ce07a30284c539597afd865aff648d84caa0 | |
parent | 267c49675227f30f1cfc284551aa9f88ed4a3560 (diff) |
WiX: fix missing props files in the MSI1.26
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1879>
-rw-r--r-- | recipes/vsintegration-1.0.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/vsintegration-1.0.recipe b/recipes/vsintegration-1.0.recipe index 8caf6b27..ae859130 100644 --- a/recipes/vsintegration-1.0.recipe +++ b/recipes/vsintegration-1.0.recipe @@ -44,8 +44,8 @@ class Recipe(recipe.Recipe): vspropsdir = os.path.join(self.config.prefix, self.vsprefix, 'libs') if not os.path.exists(vspropsdir): os.makedirs(vspropsdir) - # genvsprops = GenVSProps() - # genvsprops.runargs(self.config, vspropsdir, env_var, logfile=self.logfile) + genvsprops = GenVSProps() + genvsprops.runargs(self.config, vspropsdir, env_var, logfile=self.logfile) # Copy msvc propsdir = os.path.join(self.config.prefix, self.vsprefix, 'msvc') if not os.path.exists(propsdir): |