1
0
Fork 0

initramfs: Escape colons in depfile

Special characters are problematic in depfiles, but we can fix colons
easily.

Reported-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
steinar/wifi_calib_4_9_kernel
Michal Marek 2016-09-23 09:56:05 +02:00
parent f29ca38b6d
commit 590abbdd27
1 changed files with 4 additions and 1 deletions

View File

@ -97,7 +97,10 @@ print_mtime() {
}
list_parse() {
[ ! -L "$1" ] && echo "$1 \\" || :
if [ -L "$1" ]; then
return
fi
echo "$1" | sed 's/:/\\:/g; s/$/ \\/'
}
# for each file print a line in following format