e2fsprogs: Fix populate-extfs.sh

Fix the use of command dirname on ubuntu 12.04.
dirname does not accept space in file name.

(From OE-Core rev: ab6bd289d51c3c44862b43241a99d3e4f3ff13c0)

Signed-off-by: Stéphane Cerveau <scerveau@connected-labs.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Stéphane Cerveau 2014-06-30 16:18:44 +02:00 committed by Richard Purdie
parent 7c3f509c06
commit 4a18e162d8
1 changed files with 1 additions and 1 deletions

View File

@ -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"