Skip to content

Commit b77f1ae

Browse files
committed
use $() rather than ``
1 parent 27094cc commit b77f1ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ipc_sock.test

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
# so we can test both options without breaking other things
66
# that might be running on this system
77
#
8-
if [ "`uname -s`" = "Linux" ]
8+
if [ "$(uname -s)" = "Linux" ]
99
then
1010
if [ -f `pwd`/.libs/libstat_wrapper.so ]
1111
then
12-
export LD_PRELOAD=`pwd`/.libs/libstat_wrapper.so
12+
export LD_PRELOAD=$(pwd)/.libs/libstat_wrapper.so
1313
else
14-
export LD_PRELOAD=`pwd`/libstat_wrapper.so
14+
export LD_PRELOAD=$(pwd)/libstat_wrapper.so
1515
fi
1616
./ipc.test
1717
else

0 commit comments

Comments
 (0)