[llvm-commits] CVS: llvm/autoconf/m4/find_std_program.m4

Reid Spencer reid at x10sys.com
Mon Aug 14 16:15:18 PDT 2006



Changes in directory llvm/autoconf/m4:

find_std_program.m4 updated: 1.3 -> 1.4
---
Log message:

For PR876: http://llvm.org/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.


---
Diffs of the changes:  (+1 -1)

 find_std_program.m4 |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/autoconf/m4/find_std_program.m4
diff -u llvm/autoconf/m4/find_std_program.m4:1.3 llvm/autoconf/m4/find_std_program.m4:1.4
--- llvm/autoconf/m4/find_std_program.m4:1.3	Mon Jul 25 15:25:08 2005
+++ llvm/autoconf/m4/find_std_program.m4	Mon Aug 14 18:15:03 2006
@@ -51,7 +51,7 @@
 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






More information about the llvm-commits mailing list