summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2010-07-29 12:45:30 +0100
committerAurelien Jarno <aurelien@aurel32.net>2010-07-29 12:45:30 +0100
commit96cd678c934d10233b2a50364a4f6f797ef49cb8 (patch)
tree27fc5d06bbc26614703139fe7067186e3c7e44ca
parent435760539ee5277bc31aa12fb6dbe685d055963b (diff)
downloadlibusb-96cd678c934d10233b2a50364a4f6f797ef49cb8.tar.gz
fix bashisms
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 70a7e45..521e239 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,10 +77,10 @@ case $host in
AC_MSG_ERROR([unsupported operating system])
esac
-AM_CONDITIONAL([OS_LINUX], [test "x$backend" == "xlinux"])
-AM_CONDITIONAL([OS_DARWIN], [test "x$backend" == "xdarwin"])
-AM_CONDITIONAL([OS_WINDOWS], [test "x$backend" == "xwindows"])
-AM_CONDITIONAL([THREADS_POSIX], [test "x$threads" == "xposix"])
+AM_CONDITIONAL([OS_LINUX], [test "x$backend" = "xlinux"])
+AM_CONDITIONAL([OS_DARWIN], [test "x$backend" = "xdarwin"])
+AM_CONDITIONAL([OS_WINDOWS], [test "x$backend" = "xwindows"])
+AM_CONDITIONAL([THREADS_POSIX], [test "x$threads" = "xposix"])
# timerfd
AC_CHECK_HEADER([sys/timerfd.h], [timerfd_h=1], [timerfd_h=0])