testsuite: use uname -s instead of uname -o for system name

pull/100/head
William Pitcock 2016-11-04 22:44:00 -05:00
parent 0764d8af51
commit 0ea956e300
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ export PATH="$(atf_get_srcdir)/../:${PATH}"
selfdir="@abs_top_srcdir@/tests"
PATH_SEP=":"
SYSROOT_DIR="${selfdir}/test"
if [ "$(uname -o)" = "Msys" ]; then
if [ "$(uname -s)" = "Msys" ]; then
PATH_SEP=";"
fi