From f1c3413dc1549061972a8b444a14441bd3e8524b Mon Sep 17 00:00:00 2001 From: William Roy Date: Fri, 7 Oct 2022 18:02:39 +0000 Subject: [PATCH] Escape backlash on Windows --- blueprint-compiler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprint-compiler.py b/blueprint-compiler.py index f6a542e..61eae79 100755 --- a/blueprint-compiler.py +++ b/blueprint-compiler.py @@ -24,8 +24,8 @@ import os, sys # These variables should be set by meson. If they aren't, we're running # uninstalled, and we might have to guess some values. version = "@VERSION@" -module_path = "@MODULE_PATH@" -libdir = "@LIBDIR@" +module_path = r"@MODULE_PATH@" +libdir = r"@LIBDIR@" if version == "\u0040VERSION@": version = "uninstalled"