Fix sed regexp replacement, which I had hosed (thanks to
[oweals/busybox.git] / applets / busybox.mkll
1 #!/bin/sh
2 # Make busybox links list file.
3
4 DF="busybox.def.h"
5 MF="busybox.c"
6
7 LIST="$(gcc -E -dM $DF | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/BB_\1/gp;' | sort)"
8
9 for def in ${LIST}; do
10         i=`sed -n '/^#ifdef \<'$def'\>.*/,/^#endif/{ s/.*\"\(.*\)\".*\(_BB_DIR_[A-Z_]*\).*$/\2\/\1/gp; }' $MF`
11         for j in $i; do 
12                 if [ -z $j ] ; then 
13                         continue;
14                 fi;
15                 echo $j | sed -e 's/_BB_DIR_ROOT//g;s/_BB_DIR_BIN/\/bin/g;' \
16                     -e 's/_BB_DIR_SBIN/\/sbin/g;s/_BB_DIR_USR_BIN/\/usr\/bin/g;' \
17                     -e 's/_BB_DIR_USR_SBIN/\/usr\/sbin/g;'
18         done;
19 done