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.

Gerald


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to