diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-04-06 07:37:35 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-04-06 07:37:35 +0000 |
commit | 7a4b7194864e67f512dac1081f244d3c07a0eca2 (patch) | |
tree | b95983a04fdc7d7fbe94fe5ee7ee334880d071b1 /applets | |
parent | 6bd3602988ee51d2655b8d60ad781b1817828ece (diff) | |
download | busybox-7a4b7194864e67f512dac1081f244d3c07a0eca2.tar.gz |
Fix sed regexp replacement, which I had hosed (thanks to
Jim Gleason for finding and fixing the problem)
-Erik
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/busybox.mkll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll index fba0c8c81..c650febd6 100755 --- a/applets/busybox.mkll +++ b/applets/busybox.mkll @@ -4,8 +4,7 @@ DF="busybox.def.h" MF="busybox.c" -#LIST="$(sed -n '/^#define/{s/^#define BB_FEATURE_.*//g;s/^#define //p;}' $DF)" -LIST="$(gcc -E -dM $DF | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1/gp;' | sort)" +LIST="$(gcc -E -dM $DF | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/BB_\1/gp;' | sort)" for def in ${LIST}; do i=`sed -n '/^#ifdef \<'$def'\>.*/,/^#endif/{ s/.*\"\(.*\)\".*\(_BB_DIR_[A-Z_]*\).*$/\2\/\1/gp; }' $MF` |