diff options
-rw-r--r-- | Makeconfig | 2 | ||||
-rwxr-xr-x | iconvdata/run-iconv-test.sh | 2 | ||||
-rwxr-xr-x | nptl/tst-tls6.sh | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -692,7 +692,7 @@ comma = , sysdep-library-path = \ $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\ $(filter -Wl$(comma)-rpath-link=%,\ - $(sysdep-LDFLAGS))))) + $(sysdep-LDFLAGS)))) $(common-objpfx)/dlfcn) # $(run-via-rtld-prefix) is a command that, when prepended to the name # of a program built with the newly built library, produces a command # that, executed on the host for which the library is built, runs that diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh index 226a2e2..13b45f9 100755 --- a/iconvdata/run-iconv-test.sh +++ b/iconvdata/run-iconv-test.sh @@ -31,7 +31,7 @@ temp2=$codir/iconvdata/iconv-test.yyy trap "rm -f $temp1 $temp2" 1 2 3 15 # We have to have some directories in the library path. -LIBPATH=$codir:$codir/iconvdata +LIBPATH=$codir:$codir/iconvdata:$codir/dlfcn # How the start the iconv(1) program. ICONV='$codir/elf/ld.so --library-path $LIBPATH --inhibit-rpath ${from}.so \ diff --git a/nptl/tst-tls6.sh b/nptl/tst-tls6.sh index fde169f..a052568 100755 --- a/nptl/tst-tls6.sh +++ b/nptl/tst-tls6.sh @@ -26,7 +26,7 @@ run_program_env=$1; shift logfile=$common_objpfx/nptl/tst-tls6.out # We have to find libc and nptl -library_path=${common_objpfx}:${common_objpfx}nptl +library_path=${common_objpfx}:${common_objpfx}nptl:${common_objpfx}/dlfcn tst_tls5="${test_via_rtld_prefix} ${common_objpfx}/nptl/tst-tls5" > $logfile |