]> Git Repo - linux.git/commitdiff
initramfs: Escape colons in depfile
authorMichal Marek <[email protected]>
Fri, 23 Sep 2016 07:56:05 +0000 (09:56 +0200)
committerMichal Marek <[email protected]>
Fri, 23 Sep 2016 08:35:32 +0000 (10:35 +0200)
Special characters are problematic in depfiles, but we can fix colons
easily.

Reported-by: Florian Fainelli <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
scripts/gen_initramfs_list.sh

index 17fa901418ae6a491ba61f3814a1143e2a62bfde..0055b07b03b68cafd0bc3c400ee23b686632efbf 100755 (executable)
@@ -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
This page took 0.108407 seconds and 4 git commands to generate.