From cc2665d4313e42894f063b61aafa3b76f618603f Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 14 Aug 2006 23:15:03 +0000 Subject: [PATCH] For PR876: Fix problem noticed by Kenneth Hoste. The wrong name for a variable was being set and subsequently uses of the correct name were empty. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29681 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/m4/find_std_program.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoconf/m4/find_std_program.m4 b/autoconf/m4/find_std_program.m4 index 3cb85404b73..05d3bf77c8e 100644 --- a/autoconf/m4/find_std_program.m4 +++ b/autoconf/m4/find_std_program.m4 @@ -51,7 +51,7 @@ AC_ARG_WITH($1[-inc], eval pfxval=\$\{$1pfxdir\} eval binval=\$\{$1bindir\} eval incval=\$\{$1incdir\} -eval libvar=\$\{$1libdir\} +eval libval=\$\{$1libdir\} if test "${pfxval}" != "nada" ; then CHECK_STD_PROGRAM(${pfxval},$1,$2,$3) elif test "${binval}" != "nada" ; then