We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27094cc commit b77f1aeCopy full SHA for b77f1ae
tests/ipc_sock.test
@@ -5,13 +5,13 @@
5
# so we can test both options without breaking other things
6
# that might be running on this system
7
#
8
-if [ "`uname -s`" = "Linux" ]
+if [ "$(uname -s)" = "Linux" ]
9
then
10
if [ -f `pwd`/.libs/libstat_wrapper.so ]
11
12
- export LD_PRELOAD=`pwd`/.libs/libstat_wrapper.so
+ export LD_PRELOAD=$(pwd)/.libs/libstat_wrapper.so
13
else
14
- export LD_PRELOAD=`pwd`/libstat_wrapper.so
+ export LD_PRELOAD=$(pwd)/libstat_wrapper.so
15
fi
16
./ipc.test
17
0 commit comments