Patchworkβ [oe,01/12] trim superfluous trailing whitespace

login
register
about
Submitter Bernhard Reutner-Fischer
Date 2010-02-08 21:14:22
Message ID <1265663673-16312-2-git-send-email-rep.dot.nop@gmail.com>
Download mbox | patch
Permalink /patch/1557/
State Applied, archived
Headers show

Comments

Bernhard Reutner-Fischer - 2010-02-08 21:14:22
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
---
 recipes/busybox/busybox.inc |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
Phil Blundell - 2010-02-09 12:05:07
On Mon, 2010-02-08 at 22:14 +0100, Bernhard Reutner-Fischer wrote:
> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
> ---
>  recipes/busybox/busybox.inc |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)

Thanks for the patch.  I checked this in.

p.
Bernhard Reutner-Fischer - 2010-02-10 22:48:30
On Mon, Feb 08, 2010 at 10:14:22PM +0100, Bernhard Reutner-Fischer wrote:

All were applied or retracted except these 2 patches that asked for
refactoring and which were resent accordingly today:

Jens Seidel:
resent as [PATCH 1/8] hwclock.sh: some more !getopt_long fixes [was: [PATCH 02/12] some more !getopt_long fixes]
Phil Blundell:
dropped, now [PATCH 5/8] busybox: use .tar.bz2 [was: [PATCH 05/12] no need to set LD nowadays]

Thanks!

Patch

diff --git a/recipes/busybox/busybox.inc b/recipes/busybox/busybox.inc
index 519fcd6..7f67f47 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