fix configure script: escape $$ORIGIN

Sun, 19 Mar 2023 16:53:49 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 19 Mar 2023 16:53:49 +0100
changeset 485
222557f4f595
parent 484
c036a8b242a8
child 486
133118c79f4e

fix configure script: escape $$ORIGIN

configure file | annotate | diff | comparison | revisions
make/project.xml file | annotate | diff | comparison | revisions
--- 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__
         
--- 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'
 		</make>
 	</dependency>
 	
@@ -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'
 		</make>
 	</dependency>
 	

mercurial