mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Escape backlash on Windows
This commit is contained in:
parent
c0c40b1577
commit
f1c3413dc1
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue