Skip to content

Commit a0870f6

Browse files
committed
Fix invalid string escape sequence in cext setup.py
1 parent 5c04f4b commit a0870f6

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.cext

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.cext/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
verbosity = '--verbose' if sys.flags.verbose else '--quiet'
5555
darwin_native = sys.platform == "darwin" and __graalpython__.platform_id == "native"
56-
relative_rpath = "@loader_path" if darwin_native else "\$ORIGIN"
56+
relative_rpath = "@loader_path" if darwin_native else r"\$ORIGIN"
5757
so_ext = get_config_var("EXT_SUFFIX")
5858
SOABI = get_config_var("SOABI")
5959

0 commit comments

Comments
 (0)