From ab6bd289d51c3c44862b43241a99d3e4f3ff13c0 Mon Sep 17 00:00:00 2001 From: Stéphane Cerveau Date: Mon, 30 Jun 2014 16:18:44 +0200 Subject: e2fsprogs: Fix populate-extfs.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the use of command dirname on ubuntu 12.04. dirname does not accept space in file name. Signed-off-by: Stéphane Cerveau Signed-off-by: Richard Purdie --- meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/populate-extfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/populate-extfs.sh b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/populate-extfs.sh index 26a8d89143..47f5b5b237 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/populate-extfs.sh +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/populate-extfs.sh @@ -28,7 +28,7 @@ DEBUGFS="debugfs" [ ! -z "$DIR" ] || continue [ ! -z "$TGT" ] || continue - DIR="$(dirname $DIR)" + DIR="$(dirname "$DIR")" if [ "$DIR" != "$CWD" ]; then echo "cd $DIR" -- cgit 1.2.3-korg