diff options
Diffstat (limited to 'acpid/acpid_1.0.3.oe')
-rw-r--r-- | acpid/acpid_1.0.3.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acpid/acpid_1.0.3.oe b/acpid/acpid_1.0.3.oe index b2e17c787e..da375e1f1f 100644 --- a/acpid/acpid_1.0.3.oe +++ b/acpid/acpid_1.0.3.oe @@ -17,14 +17,14 @@ do_install () { } pkg_postinst () { - if test -n "$D"; then + if test -n "${D}"; then D="-r $D" fi update-rc.d $D acpid defaults } pkg_prerm () { - if test -n "$D"; then + if test -n "${D}"; then D="-r $D" fi update-rc.d $D acpid remove |