Skip to content

Commit

Permalink
Fixed CORE-1695: Fix source install for amd64-based systems, having s…
Browse files Browse the repository at this point in the history
…ybmolic link lib64 to lib
  • Loading branch information
AlexPeshkoff committed May 22, 2008
1 parent 14812ea commit e0aba1f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion configure.in
Expand Up @@ -122,7 +122,11 @@ dnl CPU_TYPE=x86_64
AC_DEFINE(LINUX, 1, [Define this if OS is Linux])
EDITLINE_FLG=Y
SHRLIB_EXT=so
libdir=/usr/lib64
if test -L /usr/lib64; then
libdir=/usr/lib
else
libdir=/usr/lib64
fi
CPU_TYPE=amd64
RPM64='()(64bit)'
;;
Expand Down

0 comments on commit e0aba1f

Please sign in to comment.