raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=227f1f985f2ff8cb244374dc311955f740fd9f37
commit 227f1f985f2ff8cb244374dc311955f740fd9f37 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Wed Feb 19 22:45:30 2014 +0900 configure - add warning for non /usr prefixes! --- configure.ac | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/configure.ac b/configure.ac index c16d588..34914e4 100644 --- a/configure.ac +++ b/configure.ac @@ -4343,3 +4343,19 @@ if test -n "$CFOPT_WARNING"; then fi sleep 10 fi + +if test "x$prefix" != "x/usr"; then + echo "" + echo "#-------------------------------------------------------------------#" + echo "##==-- ALERT --==##" + echo "#-------------------------------------------------------------------#" + echo "" + echo " Your installation prefix is *NOT* /usr so this means you need" + echo "to ensure some files are visible to dbus otherwise services cannot" + echo "be started when needed. You will need to do the following:" + echo "" + echo " ln -s $prefix/share/dbus-1/services/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service" + echo " ln -s $prefix/share/dbus-1/services/org.enlightenment.Efreet.service /usr/share/dbus-1/services/org.enlightenment.Efreet.service" + echo "" + echo "#-------------------------------------------------------------------#" +fi --