mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 12:32:12 +02:00
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:
committed by
Richard Purdie
parent
7c3f509c06
commit
4a18e162d8
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user