diff options
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | test/Makefile | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -471,7 +471,7 @@ else cat >> $compat_h << EOF EOF fi -if test "$glibc_statx" = "no" && "$statx" = "yes"; then +if [ "$glibc_statx" = "no" ] && [ "$statx" = "yes" ]; then cat >> $compat_h << EOF #include <sys/stat.h> diff --git a/test/Makefile b/test/Makefile index 1d3dc13..b74ba06 100644 --- a/test/Makefile +++ b/test/Makefile @@ -138,7 +138,6 @@ test_srcs := \ sq-poll-share.c \ sqpoll-sleep.c \ sq-space_left.c \ - statx.c \ stdout.c \ submit-link-fail.c \ submit-reuse.c \ |