diff --git a/ChangeLog b/ChangeLog index ddbc42b2..ebcec788 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-07-27 Curtis Gedak + + * gparted.in: Added additional check for hald daemon if hal-lock exists + - Closes GParted bug #543730 + 2008-07-26 Curtis Gedak * configure.in: Removed full path from gksu diff --git a/gparted.in b/gparted.in index ab2d39a6..c61da3f5 100755 --- a/gparted.in +++ b/gparted.in @@ -19,8 +19,10 @@ HAVE_HAL_LOCK=no for k in '' `echo "$PATH" | sed 's,:, ,g'`; do if test -x "$k/hal-lock"; then - HAVE_HAL_LOCK=yes - break + if test "z`ps -e | grep hald`" != "z"; then + HAVE_HAL_LOCK=yes + break + fi fi done