Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 2/6] package/*/*.mk: Fix indent
Date: Mon, 03 Nov 2014 21:58:26 +0100	[thread overview]
Message-ID: <5457EC72.9090106@mind.be> (raw)
In-Reply-To: <1414971595-9972-2-git-send-email-maxime.hadjinlian@gmail.com>

On 03/11/14 00:39, Maxime Hadjinlian wrote:
> Fix indent for LIBFOO_USERS and LIBFOO_PERMISSIONS  as per the manual example.
> 
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

(verified whitespace-only with git diff --ignore-all-space).


 Regards,
 Arnout

> ---
>  package/bind/bind.mk           | 2 +-
>  package/busybox/busybox.mk     | 4 ++--
>  package/dbus/dbus.mk           | 2 +-
>  package/exim/exim.mk           | 2 +-
>  package/openntpd/openntpd.mk   | 2 +-
>  package/openssh/openssh.mk     | 2 +-
>  package/sudo/sudo.mk           | 2 +-
>  package/tvheadend/tvheadend.mk | 2 +-
>  8 files changed, 9 insertions(+), 9 deletions(-)
> 
> diff --git a/package/bind/bind.mk b/package/bind/bind.mk
> index 690ca3e..06c6601 100644
> --- a/package/bind/bind.mk
> +++ b/package/bind/bind.mk
> @@ -88,7 +88,7 @@ BIND_POST_INSTALL_TARGET_HOOKS += BIND_TARGET_REMOVE_TOOLS
>  endif
>  
>  define BIND_USERS
> -named -1 named -1 * /etc/bind - - BIND daemon
> +	named -1 named -1 * /etc/bind - - BIND daemon
>  endef
>  
>  $(eval $(autotools-package))
> diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
> index 98d1bd1..0ceaab1 100644
> --- a/package/busybox/busybox.mk
> +++ b/package/busybox/busybox.mk
> @@ -50,8 +50,8 @@ BUSYBOX_KCONFIG_EDITORS = menuconfig xconfig gconfig
>  BUSYBOX_KCONFIG_OPTS = $(BUSYBOX_MAKE_OPTS)
>  
>  define BUSYBOX_PERMISSIONS
> -/bin/busybox			 f 4755	0 0 - - - - -
> -/usr/share/udhcpc/default.script f 755  0 0 - - - - -
> +	/bin/busybox			 f 4755	0 0 - - - - -
> +	/usr/share/udhcpc/default.script f 755  0 0 - - - - -
>  endef
>  
>  # If mdev will be used for device creation enable it and copy S10mdev to /etc/init.d
> diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk
> index 197f052..519146c 100644
> --- a/package/dbus/dbus.mk
> +++ b/package/dbus/dbus.mk
> @@ -11,7 +11,7 @@ DBUS_LICENSE_FILES = COPYING
>  DBUS_INSTALL_STAGING = YES
>  
>  define DBUS_PERMISSIONS
> -/usr/libexec/dbus-daemon-launch-helper f 4755 0 0 - - - - -
> +	/usr/libexec/dbus-daemon-launch-helper f 4755 0 0 - - - - -
>  endef
>  
>  define DBUS_USERS
> diff --git a/package/exim/exim.mk b/package/exim/exim.mk
> index 77f51e3..ba184f0 100644
> --- a/package/exim/exim.mk
> +++ b/package/exim/exim.mk
> @@ -105,7 +105,7 @@ define EXIM_INSTALL_TARGET_CMDS
>  endef
>  
>  define EXIM_USERS
> -exim 88 mail 8 * - - - exim
> +	exim 88 mail 8 * - - - exim
>  endef
>  
>  define EXIM_INSTALL_INIT_SYSV
> diff --git a/package/openntpd/openntpd.mk b/package/openntpd/openntpd.mk
> index 3441c8b..38526dd 100644
> --- a/package/openntpd/openntpd.mk
> +++ b/package/openntpd/openntpd.mk
> @@ -16,7 +16,7 @@ define OPENNTPD_INSTALL_INIT_SYSV
>  endef
>  
>  define OPENNTPD_USERS
> -_ntp -1 _ntp -1 * - - - Network Time Protocol daemon
> +	_ntp -1 _ntp -1 * - - - Network Time Protocol daemon
>  endef
>  
>  $(eval $(autotools-package))
> diff --git a/package/openssh/openssh.mk b/package/openssh/openssh.mk
> index 4b16c34..d08b468 100644
> --- a/package/openssh/openssh.mk
> +++ b/package/openssh/openssh.mk
> @@ -13,7 +13,7 @@ OPENSSH_CONF_OPTS = --sysconfdir=/etc/ssh --disable-lastlog --disable-utmp \
>  		--disable-utmpx --disable-wtmp --disable-wtmpx --disable-strip
>  
>  define OPENSSH_USERS
> -sshd -1 sshd -1 * - - - SSH drop priv user
> +	sshd -1 sshd -1 * - - - SSH drop priv user
>  endef
>  
>  # uClibc toolchain for ARC doesn't support PIE at the moment
> diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk
> index 9a294f1..283a40c 100644
> --- a/package/sudo/sudo.mk
> +++ b/package/sudo/sudo.mk
> @@ -29,7 +29,7 @@ endef
>  SUDO_POST_CONFIGURE_HOOKS += SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
>  
>  define SUDO_PERMISSIONS
> -/usr/bin/sudo			 f 4755	0 0 - - - - -
> +	/usr/bin/sudo			 f 4755	0 0 - - - - -
>  endef
>  
>  $(eval $(autotools-package))
> diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
> index 857f6e6..a83a508 100644
> --- a/package/tvheadend/tvheadend.mk
> +++ b/package/tvheadend/tvheadend.mk
> @@ -85,7 +85,7 @@ define TVHEADEND_INSTALL_INIT_SYSV
>  endef
>  
>  define TVHEADEND_USERS
> -tvheadend -1 tvheadend -1 * /home/tvheadend - video TVHeadend daemon
> +	tvheadend -1 tvheadend -1 * /home/tvheadend - video TVHeadend daemon
>  endef
>  
>  $(eval $(generic-package))
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

  reply	other threads:[~2014-11-03 20:58 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-02 23:39 [Buildroot] [PATCH 1/6] dbus: Remove DBUS_USERS duplicate Maxime Hadjinlian
2014-11-02 23:39 ` [Buildroot] [PATCH 2/6] package/*/*.mk: Fix indent Maxime Hadjinlian
2014-11-03 20:58   ` Arnout Vandecappelle [this message]
2014-11-08 22:07   ` Peter Korsgaard
2014-11-02 23:39 ` [Buildroot] [PATCH 3/6] " Maxime Hadjinlian
2014-11-03 21:02   ` Arnout Vandecappelle
2014-11-02 23:39 ` [Buildroot] [PATCH 4/6] makedevs: Rework README Maxime Hadjinlian
2014-11-02 23:39 ` [Buildroot] [PATCH 5/6] manual: Rework makedevs syntax Maxime Hadjinlian
2014-11-02 23:39 ` [Buildroot] [PATCH 6/6] manual: Various tidy changes Maxime Hadjinlian
2014-11-03 21:10   ` Arnout Vandecappelle
2014-11-03 21:58     ` Maxime Hadjinlian
2014-11-03  9:08 ` [Buildroot] [PATCH 1/6] dbus: Remove DBUS_USERS duplicate Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5457EC72.9090106@mind.be \
    --to=arnout@mind.be \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox