From 3708571c5996ee656aa374989ccfa06bd3617c76 Mon Sep 17 00:00:00 2001
From: Andre Noll <maan@systemlinux.org>
Date: Mon, 20 Jul 2009 18:49:25 +0200
Subject: [PATCH] configure.ac: Fix --with-osl-libs option.

Quite a few typos in there..
---
 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 6557deaa..ea8d531a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -164,8 +164,8 @@ if test -n "$with_osl_headers"; then
 fi
 AC_ARG_WITH(osl_libs, [AC_HELP_STRING(--with-osl-libs=dir,
 	[look for libosl also in dir])])
-if test -n "$with_osl_lib"; then
-	osl_libs="-L$with_osl_lib"
+if test -n "$with_osl_libs"; then
+	osl_libs="-L$with_osl_libs"
 	LDFLAGS="$LDFLAGS $osl_libs"
 fi
 
@@ -179,7 +179,7 @@ Install the library with
 	])
 fi
 AC_SUBST(osl_cppflags)
-server_ldflags="$server_ldflags -L$with_osl_lib"
+server_ldflags="$server_ldflags -L$with_osl_libs"
 CPPFLAGS="$OLD_CPPFLAGS"
 LDFLAGS="$OLD_LDFLAGS"
 LIBS="$OLD_LIBS"
-- 
2.39.5