mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik
15 lines
336 B
Bash
Executable file
15 lines
336 B
Bash
Executable file
#!/bin/sh
|
|
# Make busybox links list file.
|
|
|
|
DF="busybox.def.h"
|
|
MF="busybox.c"
|
|
|
|
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`
|
|
for k in $j; do
|
|
echo $i$k
|
|
done
|
|
done
|