<dfjoerg> raster: care to review/apply a patch?

<raster> what patch?
<dfjoerg> http://www.netbsd.org/~joerg/enlightenment_remote.diff <-- for e17



SVN revision: 45054
This commit is contained in:
Carsten Haitzler 2010-01-12 00:12:39 +00:00
parent 4ebf5160ec
commit 3f2859757e
1 changed files with 2 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
#
# See the function show_help_new_tool in order to know more about this tool
@ -206,11 +206,7 @@ er_default_profile_set(){
# RETURNS: just finishes and exit
#===============================================================================
for dir in $( echo $PATH | tr ':' ' ' )
do
test -x ${dir}/dbus-send && dbus_send_found=yes
done
if [[ "$dbus_send_found" != "yes" ]] ; then
if ! type dbus-send > /dev/null 2>&1; then
echo "E: dbus-send command not found, please install it first"
exit 1
fi