diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2010-07-29 12:45:30 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-07-29 12:45:30 +0100 |
commit | 96cd678c934d10233b2a50364a4f6f797ef49cb8 (patch) | |
tree | 27fc5d06bbc26614703139fe7067186e3c7e44ca | |
parent | 435760539ee5277bc31aa12fb6dbe685d055963b (diff) | |
download | libusb-96cd678c934d10233b2a50364a4f6f797ef49cb8.tar.gz |
fix bashisms
-rw-r--r-- | configure.ac | 8 |
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]) |