From 25ece3ab55d79ffd213a25025c7b57cfd2f06514 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sat, 5 Jul 2008 18:51:30 +0000 Subject: [PATCH] sigh, swap || for &&. Originally committed to SVN as r2243. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index a3dea978a..495bf992c 100644 --- a/configure.in +++ b/configure.in @@ -210,7 +210,7 @@ int main(void) { return 0; }]) -if test "$agi_with_openglu" = "no" || test "$build_darwin" != "yes"; then +if test "$agi_with_openglu" = "no" && test "$build_darwin" != "yes"; then AC_MSG_FAILURE([Please install a working OpenGL GLU library.]) fi