diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-29 21:17:57 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-29 21:17:57 +0000 |
commit | 3115fb3e0d8d769e2994bcd6463e5403188fab4b (patch) | |
tree | bded29302158765542a4182b9ecc7bcffa343a0b /netkit-base | |
parent | af8389231cd953919be4c6d7e7a8a04504db9935 (diff) |
Adapting some builds per the recent oe metadata handling changes.
BKrev: 40689285Q7zUjk20aonhEakS324blw
Diffstat (limited to 'netkit-base')
-rw-r--r-- | netkit-base/netkit-base_0.17.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netkit-base/netkit-base_0.17.oe b/netkit-base/netkit-base_0.17.oe index b5b56cb630..7dccf231c6 100644 --- a/netkit-base/netkit-base_0.17.oe +++ b/netkit-base/netkit-base_0.17.oe @@ -19,14 +19,14 @@ do_install () { } pkg_postinst () { - if test -n "$D"; then + if test -n "${D}"; then D="-r $D" fi update-rc.d $D inetd start 20 2 3 4 5 . stop 20 0 1 6 . } pkg_prerm () { - if test -n "$D"; then + if test -n "${D}"; then D="-r $D" fi update-rc.d $D inetd remove |