diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-02-08 22:14:22 +0100 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2010-02-09 12:03:26 +0000 |
commit | 0b9830a337e938216d2a19e92159588bf4885746 (patch) | |
tree | b9e76a53d51aba18d901dcdbe2646ceffa4a496a /recipes/busybox | |
parent | 17c810af40dfbf084ef87c9b2a92874af43a6fe7 (diff) |
busybox: trim superfluous trailing whitespace from .inc file
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'recipes/busybox')
-rw-r--r-- | recipes/busybox/busybox.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/busybox/busybox.inc b/recipes/busybox/busybox.inc index 519fcd6f39..7f67f479c9 100644 --- a/recipes/busybox/busybox.inc +++ b/recipes/busybox/busybox.inc @@ -55,7 +55,7 @@ FILES_${PN} += "${datadir}/udhcpc" INITSCRIPT_PACKAGES = "${PN}-httpd ${PN}-syslog ${PN}-udhcpd" INITSCRIPT_NAME_${PN}-httpd = "busybox-httpd" INITSCRIPT_NAME_${PN}-syslog = "syslog" -INITSCRIPT_NAME_${PN}-udhcpd = "busybox-udhcpd" +INITSCRIPT_NAME_${PN}-udhcpd = "busybox-udhcpd" CONFFILES_${PN}-syslog = "${sysconfdir}/syslog.conf" # This disables the syslog startup links in slugos (see slugos-init) @@ -137,7 +137,7 @@ pkg_postinst_${PN} () { # (update-alternatives have no problem replacing links later anyway) test -n 2> /dev/null || alias test='busybox test' if test "x$D" = "x"; then while read link; do if test ! -h "$link"; then case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; /*) to="/bin/busybox";; esac; busybox ln -s $to $link; fi; done </etc/busybox.links; fi - + # This adds the links, remember that this has to work when building an image too, hence the $D while read link; do case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; /*) to="/bin/busybox";; esac; bn=`basename $link`; update-alternatives --install $link $bn $to 50; done <$D/etc/busybox.links } @@ -167,7 +167,7 @@ pkg_prerm_${PN} () { /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; - /*) to="/bin/busybox";; + /*) to="/bin/busybox";; esac bn=`basename $link` sh /usr/bin/update-alternatives --remove $bn $to |