Skip to content

Commit

Permalink
same bug again!
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@763 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Peter Aronsson committed Mar 14, 2002
1 parent fab3dd9 commit 0903232
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -1034,7 +1034,7 @@ if test -d /home/pelab/pkg/gnu/lib ; then
readlinelib="/home/pelab/pkg/gnu/lib"
echo "$ac_t""yes" 1>&6
else
readlinelib = find /usr/lib /usr/local/lib -name libreadline.a | awk -F/ '{ total="";for (i = 1 ; i < NF; i++) total= total $i "/"; print total}'
readlinelib = `find /usr/lib /usr/local/lib -name libreadline.a | awk -F/ '{ total="";for (i = 1 ; i < NF; i++) total= total $i "/"; print total}'`
if test -z "$readlinelib" ; then
echo "$ac_t""no" 1>&6
{ echo "configure: error: Could not find readline lib file" 1>&2; exit 1; }
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -89,7 +89,7 @@ if test -d /home/pelab/pkg/gnu/lib ; then
AC_MSG_RESULT([yes])
else
dnl Check in standard paths
readlinelib = find /usr/lib /usr/local/lib -name libreadline.a | awk -F/ '{ total="";for (i = 1 ; i < NF; i++) total= total $i "/"; print total}'
readlinelib = `find /usr/lib /usr/local/lib -name libreadline.a | awk -F/ '{ total="";for (i = 1 ; i < NF; i++) total= total $i "/"; print total}'`
if test -z "$readlinelib" ; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([Could not find readline lib file])
Expand Down

0 comments on commit 0903232

Please sign in to comment.