diff options
Diffstat (limited to 'ifplugd')
-rw-r--r-- | ifplugd/ifplugd_0.20.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ifplugd/ifplugd_0.20.oe b/ifplugd/ifplugd_0.20.oe index 0e2770a920..c7916009b7 100644 --- a/ifplugd/ifplugd_0.20.oe +++ b/ifplugd/ifplugd_0.20.oe @@ -9,14 +9,14 @@ inherit autotools EXTRA_OECONF = "--disable-lynx" pkg_postinst () { - if test -n "$D"; then + if test -n "${D}"; then D="-r $D" fi update-rc.d $D ifplugd defaults } pkg_prerm () { - if test -n "$D"; then + if test -n "${D}"; then D="-r $D" fi update-rc.d $D ifplugd remove |