﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1200	Openmodelica fails during configure on x86_64 because of symlink to /usr/lib64	perob88	perob88	"On x86_64 /usr/lib is a symlink to /usr/lib64. As a result the configure scripts fails to find ANTLR even though it's there. Chaning $antlrhome/lib to $antlrhome/lib/ in configure script solves the problem. 


Here's what I did: 

-antlrlib=`find $antlrhome/lib -type f -name libantlr.a -print | head -1 | awk -F/ '{ total="""";for (i = 1 ; i < NF; i++) total= total $i ""/""; print total}'` 
+antlrlib=`find $antlrhome/lib/ -type f -name libantlr.a -print | head -1 | awk -F/ '{ total="""";for (i = 1 ; i < NF; i++) total= total $i ""/""; print total}'`

Now, I don't know if these are generated lines of code or not so the real problem may be elsewhere."	defect	closed	high				fixed		perob88
