diff options
author | Eric Andersen | 1999-10-06 20:25:32 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-06 20:25:32 +0000 |
commit | 17d49efd8ce6507152d78a70574193bb1b313af6 (patch) | |
tree | 64e24302dc2575867d8a78897500e5a5b2a48398 /busybox.mkll | |
parent | 9d3aba7b37b275350a9fe0887871da9ba73dcbd7 (diff) | |
download | busybox-17d49efd8ce6507152d78a70574193bb1b313af6.zip busybox-17d49efd8ce6507152d78a70574193bb1b313af6.tar.gz |
More stuff.
Diffstat (limited to 'busybox.mkll')
-rwxr-xr-x | busybox.mkll | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/busybox.mkll b/busybox.mkll index e43a1cc..f79462b 100755 --- a/busybox.mkll +++ b/busybox.mkll @@ -2,16 +2,14 @@ #Make busybox links list file DF="busybox.def.h" -MF="main.c" +MF="busybox.c" LIST="$(sed -n '/^#define/{s/^#define //p;}' $DF)" - for def in ${LIST}; do - - set -- $(sed -n '/^#ifdef '$def'[ +| +].*/,/^#endif/{s/.*\/\///p; /^{ /{ s/^{ "//; s/",.*$//p;}; }' $MF) - path=$1; shift - - for n in $@; do - echo "$path/$n" - done +for def in ${LIST}; do + i=`sed -n 's/^#ifdef '$def'.*\/\/\(.*$\)/\/\1\//gp' $MF` + j=`sed -n '/^#ifdef '$def'.*/,/^#endif/{ s/.*\"\(.*\)\".*/\1/gp; }' $MF` + for k in $j; do + echo $i$k done +done |