Skip to content

Commit

Permalink
fix: Use single '$' for ORIGIN parameter expansion
Browse files Browse the repository at this point in the history
* Use of '$$' for the parameter expansion of ORIGIN results in
  a failure to properly resolve $ORIGIN and for LDFLAGS to be set
  improperly. Use '$ORIGIN' instead.
  • Loading branch information
matthewfeickert committed Feb 20, 2024
1 parent 19e0109 commit 641f2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def build_extensions(self):
f"--with-cgaldir={cgal_dir}",
"--enable-swig",
"--enable-pyext",
"LDFLAGS=-Wl,-rpath,$$ORIGIN/_fastjet_core/lib:$$ORIGIN",
"LDFLAGS=-Wl,-rpath,$ORIGIN/_fastjet_core/lib:$ORIGIN",
]

try:
Expand Down

0 comments on commit 641f2ac

Please sign in to comment.