kbuild: fix unportability in gen_initramfs_list.sh

On a Mac OS X machine the output of ls -l is different from a standard
Linux machine. Use readlink instead of parsing a hardcoded field number
from the ls output.

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
Felix Fietkau 2008-04-02 14:50:05 +02:00 committed by Sam Ravnborg
parent 01dee1881d
commit b5a5e4c732
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ parse() {
str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
;;
"slink")
local target=`field 11 $(LC_ALL=C ls -l "${location}")`
local target=`readlink "${location}"`
str="${ftype} ${name} ${target} ${str}"
;;
*)