]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
busybox: Fix syntax error when installing S10mdev
authorPhilippe Pepiot <phil@philpep.org>
Wed, 26 Oct 2011 21:09:39 +0000 (23:09 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Wed, 26 Oct 2011 21:17:42 +0000 (23:17 +0200)
Signed-off-by: Philippe Pepiot <phil@philpep.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/busybox/busybox.mk

index c95190d2ad4855c157cffdb25f53f6b0f170298a..9ca4c93df7ac7a8bbce5fc65c97d4ef142e0180e 100644 (file)
@@ -31,7 +31,7 @@ endif
 # If mdev will be used for device creation enable it and copy S10mdev to /etc/init.d
 ifeq ($(BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV),y)
 define BUSYBOX_INSTALL_MDEV_SCRIPT
-       [ -f $(TARGET_DIR)/etc/init.d/S10mdev ] ||
+       [ -f $(TARGET_DIR)/etc/init.d/S10mdev ] || \
                install -D -m 0755 package/busybox/S10mdev \
                        $(TARGET_DIR)/etc/init.d/S10mdev
 endef