raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=0f1883df9a978d686971bba9f1450b7eb7a3fd84
commit 0f1883df9a978d686971bba9f1450b7eb7a3fd84 Author: Joel Klinghed <the...@yahoo.com> Date: Thu Mar 6 19:18:50 2014 +0900 efl: Use actual destination dirs in warning about using non-standard prefix Summary: Instead of relying on ${prefix}/share to be the default for ${datadir} or ${dbusservicedir} use the actual paths where the files will be placed. Somewhat tricky because of autoconfs desire to keep prefix changeable but continuously evaluating the variables until they don't change work. Reviewers: raster, englebass Reviewed By: raster CC: cedric, stefan_schmidt Differential Revision: https://phab.enlightenment.org/D581 --- configure.ac | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 28c7ef8..75d7297 100644 --- a/configure.ac +++ b/configure.ac @@ -4425,6 +4425,20 @@ if test -n "$CFOPT_WARNING"; then fi if test "x$prefix" != "x/usr"; then + old= + path=$dbusservicedir + while test "x$old" != "x$path"; do + old=$path + eval path="\"$path\"" + done + resolved_dbusservicedir=$path + old= + path=$datadir + while test "x$old" != "x$path"; do + old=$path + eval path="\"$path\"" + done + resolved_datadir=$path echo "" echo "#-------------------------------------------------------------------#" echo "##==-- ALERT --==##" @@ -4434,10 +4448,10 @@ if test "x$prefix" != "x/usr"; then 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 " ln -s ${resolved_dbusservicedir}/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service" + echo " ln -s ${resolved_dbusservicedir}/org.enlightenment.Efreet.service /usr/share/dbus-1/services/org.enlightenment.Efreet.service" echo "" - echo "or add \"$prefix/share\" to \$XDG_DATA_DIRS" + echo "or add \"${resolved_datadir}\" to \$XDG_DATA_DIRS" echo "" echo "#-------------------------------------------------------------------#" fi --