summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL. E. Segovia <amy@centricular.com>2025-06-30 16:31:28 -0300
committerBackport Bot <gitlab-backport-bot@gstreamer-foundation.org>2025-06-30 23:53:04 +0100
commit657c933d1af846591f25fc3a9bde117200f4e5c9 (patch)
treea842ce07a30284c539597afd865aff648d84caa0
parent267c49675227f30f1cfc284551aa9f88ed4a3560 (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.recipe4
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):