Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-01-22 07:55:32 +0300
committerErik Andersen <andersen@codepoet.org>2000-01-22 07:55:32 +0300
commitf4acea8cf5175de2292c86b58f2f30d262f14345 (patch)
treee571aa640efbf617936d9838925257efa352f8db /busybox.mkll
parentb2660c703dfd8fe4d37d38d69d5a33c3131f59a3 (diff)
Better way to check for namespace aliasing.
-Erik
Diffstat (limited to 'busybox.mkll')
-rwxr-xr-xbusybox.mkll2
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox.mkll b/busybox.mkll
index 151f5c325..be6d937cf 100755
--- a/busybox.mkll
+++ b/busybox.mkll
@@ -8,7 +8,7 @@ LIST="$(sed -n '/^#define/{s/^#define //p;}' $DF)"
for def in ${LIST}; do
i=`sed -n 's/^#ifdef \<'$def'\>.*\/\/\(.*$\)/\/\1\//gp' $MF`
- j=`sed -n '/^#ifdef '$def'[ ].*/,/^#endif/{ s/.*\"\(.*\)\".*/\1/gp; }' $MF`
+ j=`sed -n '/^#ifdef \<'$def'\>.*/,/^#endif/{ s/.*\"\(.*\)\".*/\1/gp; }' $MF`
for k in $j; do
echo $i$k
done