diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make.sh | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index a268eafd..06dec156 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -261,42 +261,6 @@ then generated/config2help Config.in $KCONFIG_CONFIG > generated/help.h || exit 1 fi -mksysconf() -{ - echo "int ${1}_vals[] = {" && - - # Extract names, remove blank lines, filter, replace unknown #defines - # with UNKNOWN - sed -n "/char [*]${1}_names[[]/"',/^}/s/[^"]*"\([^"]*\) *",*/\1\n/pg' \ - toys/posix/getconf.c | grep -v '^$' | $2 | - sed -e "$DEFINES" -e "t;d;a UNKNOWN" | xargs | tr ' ' ',' && - echo '};' -} - -if ! [ generated/getconf.h -nt toys/posix/getconf.c ] -then - echo generated/getconf.h - - # Dump #define list for limits.h and unistd.h, create sed expression to - # match known defines - DEFINES="$(echo -e '#include <limits.h>\n#include <unistd.h>' | \ - gcc -E -dM - | \ - sed -n 's@^#define[ \t][ \t]*\([^ \t(]*\)[ \t].*@s/^\1$/\&/@p' )" - - # Extract limit names, compare against limits.h #defines, replace unknown - # ones with UNKNOWN - - { - mksysconf sysconf \ - sed\ 's/^_POSIX2/2/;s/^PTHREAD/THREAD/;s/^_POSIX_//;s/^_XOPEN_/XOPEN_/;s/^/_SC_/' && - mksysconf confstr sed\ 's/.*/_CS_&/' && - mksysconf limit cat - } > generated/getconf.h - - unset HEADERS -fi - - [ ! -z "$NOBUILD" ] && exit 0 echo -n "Compile toybox" |