]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/*/*.mk: Fix indent
authorMaxime Hadjinlian <maxime.hadjinlian@gmail.com>
Sat, 15 Nov 2014 16:29:16 +0000 (17:29 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 19 Nov 2014 22:23:35 +0000 (23:23 +0100)
Change LIBFOO_PERMISSIONS everywhere to be a space-separated list.
As nothing was specified in the manual but all our lists are space
separated, there is no reason that this one should be made an exception.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/busybox/busybox.mk
package/nginx/nginx.mk
package/sudo/sudo.mk

index 0ceaab17f332f7ab2d506400fd41c24032fa2d71..f0fa85199c9d59db97bd4b875ed6842749f61509 100644 (file)
@@ -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
index 5a65c5226e6e94480265be390011d938af10c7c0..55ae8442fac736c28694d2accd2116acff1eba3c 100644 (file)
@@ -25,7 +25,7 @@ NGINX_CONF_OPTS = \
 # So, we just need to create the directories used by nginx with the right
 # ownership.
 define NGINX_PERMISSIONS
-       /var/lib/nginx  d       755     33      33      -       -       -       -       -
+       /var/lib/nginx d 755 33 33 - - - - -
 endef
 
 # disable external libatomic_ops because its detection fails.
index 283a40ca66a7517e87876fb028c34ab0801dd513..61635eccaf045fb66101366224bf64fc845560ad 100644 (file)
@@ -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))