Skip to content

Commit

Permalink
Fix paths in libffi.pc.in
Browse files Browse the repository at this point in the history
  • Loading branch information
ssuominengentoo authored and atgreen committed Jun 12, 2014
1 parent df31a85 commit ad0d1d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -590,11 +590,11 @@ AC_ARG_ENABLE(purify-safety,
if test "x$GCC" = "xyes"; then
if test -n "$with_cross_host" &&
test x"$with_cross_host" != x"no"; then
toolexecdir='$(exec_prefix)/$(target_alias)'
toolexeclibdir='$(toolexecdir)/lib'
toolexecdir="${exec_prefix}"/'$(target_alias)'
toolexeclibdir="${toolexecdir}"/lib
else
toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
toolexeclibdir='$(libdir)'
toolexecdir="${libdir}"/gcc-lib/'$(target_alias)'
toolexeclibdir="${libdir}"
fi
multi_os_directory=`$CC $CFLAGS -print-multi-os-directory`
case $multi_os_directory in
Expand All @@ -603,7 +603,7 @@ if test "x$GCC" = "xyes"; then
esac
AC_SUBST(toolexecdir)
else
toolexeclibdir='$(libdir)'
toolexeclibdir="${libdir}"
fi
AC_SUBST(toolexeclibdir)

Expand Down

0 comments on commit ad0d1d2

Please sign in to comment.