diff options
-rwxr-xr-x | scripts/make.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index ea67e121..2e7fd3b6 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -70,15 +70,6 @@ sed -n -e 's/^# CONFIG_\(.*\) is not set.*/\1/' \ -e 'g' -e 's/.*/#define USE_&(...) __VA_ARGS__/p' .config > \ generated/config.h || exit 1 -#for i in $(echo toys/*.c | sort) -#do - # Grab the function command names - # NAME=$(echo $i | sed -e 's@toys/@@' -e 's@\.c@@') - #sed -n '/struct '$NAME'_command {/,/};/p' $i \ - # >> generated/globals_big.h - # echo "struct ${NAME}_command;" >> generated/globals.h -#done - # Extract a list of toys/*.c files to compile from the data in ".config" with # sed, sort, and tr: |