File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
resources/server/bin/helpers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ elif [ -f /usr/lib/libstdc++.so.6 ]; then
32
32
libstdcpp_path=' /usr/lib/libstdc++.so.6'
33
33
elif [ -f /sbin/ldconfig ]; then
34
34
# Look up path
35
- libstdcpp_paths=$( ldconfig -p | grep ' libstdc++.so.6' )
35
+ libstdcpp_paths=$( /sbin/ ldconfig -p | grep ' libstdc++.so.6' )
36
36
37
37
if [ " $( echo " $libstdcpp_paths " | wc -l) " -gt 1 ]; then
38
38
libstdcpp_path=$( echo " $libstdcpp_paths " | grep " $LDCONFIG_ARCH " | awk ' {print $NF}' )
@@ -66,7 +66,7 @@ if [ -n "$(ldd --version | grep -v musl)" ]; then
66
66
libc_path=' /usr/lib/libc.so.6'
67
67
elif [ -f /sbin/ldconfig ]; then
68
68
# Look up path
69
- libc_paths=$( ldconfig -p | grep ' libc.so.6' )
69
+ libc_paths=$( /sbin/ ldconfig -p | grep ' libc.so.6' )
70
70
71
71
if [ " $( echo " $libc_paths " | wc -l) " -gt 1 ]; then
72
72
libc_path=$( echo " $libc_paths " | grep " $LDCONFIG_ARCH " | awk ' {print $NF}' )
You can’t perform that action at this time.
0 commit comments