diff options
Diffstat (limited to 'tests/other-fs-tmpdir')
-rw-r--r-- | tests/other-fs-tmpdir | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/other-fs-tmpdir b/tests/other-fs-tmpdir index d3d3a55cd..4bdfe6ff5 100644 --- a/tests/other-fs-tmpdir +++ b/tests/other-fs-tmpdir @@ -24,13 +24,13 @@ test "${CANDIDATE_TMP_DIRS+set}" = set \ other_partition_tmpdir= -dot_mount_point=`stat -c %d .` +dot_mount_point=$(stat -c %d .) for d in $CANDIDATE_TMP_DIRS; do # Skip nonexistent directories. test -d "$d" || continue - d_mount_point=`stat -L -c %d "$d"` + d_mount_point=$(stat -L -c %d "$d") # Same partition? Skip it. test "x$d_mount_point" = "x$dot_mount_point" && continue |