# HG changeset patch # User Olaf Wintermann # Date 1679241229 -3600 # Node ID 222557f4f595e865a6c8c468585c8137e5451ffb # Parent c036a8b242a8036c7b09b4b82a9811856c122fc8 fix configure script: escape $$ORIGIN diff -r c036a8b242a8 -r 222557f4f595 configure --- a/configure Sun Mar 19 16:48:19 2023 +0100 +++ b/configure Sun Mar 19 16:53:49 2023 +0100 @@ -356,7 +356,7 @@ # ld flags UCX_SO_NAME = -RPATH_WS_LIB_FLAG = -Wl,-rpath,'$$ORIGIN/../lib' +RPATH_WS_LIB_FLAG = -Wl,-rpath,'\$\$ORIGIN/../lib' __EOF__ @@ -389,7 +389,7 @@ # ld flags UCX_SO_NAME = -RPATH_WS_LIB_FLAG = -Wl,-rpath,'$$ORIGIN/../lib' +RPATH_WS_LIB_FLAG = -Wl,-rpath,'\$\$ORIGIN/../lib' __EOF__ diff -r c036a8b242a8 -r 222557f4f595 make/project.xml --- a/make/project.xml Sun Mar 19 16:48:19 2023 +0100 +++ b/make/project.xml Sun Mar 19 16:53:49 2023 +0100 @@ -22,7 +22,7 @@ # ld flags UCX_SO_NAME = -RPATH_WS_LIB_FLAG = -Wl,-rpath,'$$ORIGIN/../lib' +RPATH_WS_LIB_FLAG = -Wl,-rpath,'\$\$ORIGIN/../lib' @@ -40,7 +40,7 @@ # ld flags UCX_SO_NAME = -RPATH_WS_LIB_FLAG = -Wl,-rpath,'$$ORIGIN/../lib' +RPATH_WS_LIB_FLAG = -Wl,-rpath,'\$\$ORIGIN/../lib'