Skip to content

Commit d7e3503

Browse files
committed
Fix incorrect quoting of $ sign
1 parent e9cb7e7 commit d7e3503

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
@@ -59,7 +59,7 @@
5959

6060
verbosity = '--verbose' if sys.flags.verbose else '--quiet'
6161
darwin_native = sys.platform == "darwin" and __graalpython__.platform_id == "native"
62-
relative_rpath = "@loader_path" if darwin_native else r"\$ORIGIN"
62+
relative_rpath = "@loader_path" if darwin_native else r"$ORIGIN"
6363
so_ext = get_config_var("EXT_SUFFIX")
6464
SOABI = get_config_var("SOABI")
6565
is_managed = 'managed' in SOABI

0 commit comments

Comments
 (0)