On 2/13/06, Gerald Dachs <[EMAIL PROTECTED]> wrote:
Oops... the original idea was the same as yours, but the implementation was screwed.
Thanks!
David
can somebody explain me this part from configure.in?
AC_PREFIX_DEFAULT(${HOME}/.e/e)
if test "x$prefix" = "xNONE"; then
datarootdir=${ac_default_prefix}
else
datarootdir=${ac_default_prefix}/share
fi
localedir=${datarootdir}/locale
AC_SUBST(LOCALEDIR, "${localedir}")
should it not be like this?
AC_PREFIX_DEFAULT(${HOME}/.e/e)
if test "x$prefix" = "xNONE"; then
datarootdir=${ac_default_prefix}
else
datarootdir=${prefix}/share
fi
localedir=${datarootdir}/locale
AC_SUBST(LOCALEDIR, "${localedir}")
I am not sure what the idea of the orignal was.
Oops... the original idea was the same as yours, but the implementation was screwed.
Thanks!
David