From 5778b361e81ebdd9b4cbe66d82dd04955dc10bc4 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Wed, 26 Nov 2008 14:27:45 +0100 Subject: Separate '-m' and the mode with a space when invoking 'install' Some 'install' versions (e.g. this of OpenEmbedded) require the mode to be a separate argument and don't understand the '-m0755' syntax: .../staging/x86_64-linux/usr/bin/install-sh: ./-m0755 does not exist. Signed-off-by: Enrico Scholz Signed-off-by: Artem Bityutskiy --- mkfs.ubifs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mkfs.ubifs') diff --git a/mkfs.ubifs/Makefile b/mkfs.ubifs/Makefile index a327eee..f802bff 100644 --- a/mkfs.ubifs/Makefile +++ b/mkfs.ubifs/Makefile @@ -20,4 +20,4 @@ cscope: install: ${TARGETS} mkdir -p ${DESTDIR}/${SBINDIR} - install -m0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/ + install -m 0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/ -- cgit v1.2.3