diff options
author | dholland <dholland@pkgsrc.org> | 2011-10-29 15:17:17 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2011-10-29 15:17:17 +0000 |
commit | 0d443608a122e6cad78672fe3e35d768fc40d75a (patch) | |
tree | b54dd57436dd94405760b30cb492966546d4bf46 | |
parent | fa4f25cf49e6f04f3c3553e9df9235359e61fe9b (diff) | |
download | pkgsrc-0d443608a122e6cad78672fe3e35d768fc40d75a.tar.gz |
Fix typo in previous that made deinstallation fail...
-rw-r--r-- | sysutils/dbus/DEINSTALL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/dbus/DEINSTALL b/sysutils/dbus/DEINSTALL index 0fc5772e490..81de0538eb1 100644 --- a/sysutils/dbus/DEINSTALL +++ b/sysutils/dbus/DEINSTALL @@ -1,4 +1,4 @@ -# $NetBSD: DEINSTALL,v 1.1 2011/10/29 13:26:59 marino Exp $ +# $NetBSD: DEINSTALL,v 1.2 2011/10/29 15:17:17 dholland Exp $ # DEINSTALL is used rather than @pkgdir because the automatic directory # deletion mechanism makes dbus services remove these directories first, @@ -11,7 +11,7 @@ POST-DEINSTALL) @PREFIX@/libexec/dbus-1" for dbuspath in ${CYCLE}; do if [ -d ${dbuspath} ]; then - if [ -n `${LS} -A ${$dbuspath}` ]; then + if [ -n `${LS} -A ${dbuspath}` ]; then ${RMDIR} ${dbuspath} fi fi |