aboutsummaryrefslogtreecommitdiffstats
path: root/1.4.23-rc4/build_tools/make_buildopts_h
diff options
context:
space:
mode:
Diffstat (limited to '1.4.23-rc4/build_tools/make_buildopts_h')
-rwxr-xr-x1.4.23-rc4/build_tools/make_buildopts_h29
1 files changed, 0 insertions, 29 deletions
diff --git a/1.4.23-rc4/build_tools/make_buildopts_h b/1.4.23-rc4/build_tools/make_buildopts_h
deleted file mode 100755
index 531bb93a6..000000000
--- a/1.4.23-rc4/build_tools/make_buildopts_h
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-cat << END
-/*
- * buildopts.h
- * Automatically generated
- */
-
-END
-TMP=`${GREP} MENUSELECT_CFLAGS menuselect.makeopts | sed 's/MENUSELECT_CFLAGS\=//g' | sed 's/-D//g'`
-for x in ${TMP}; do
- echo "#define ${x} 1"
-done
-if ${GREP} AST_DEVMODE makeopts | ${GREP} -q yes
-then
- echo "#define AST_DEVMODE 1"
- TMP="${TMP} AST_DEVMODE"
-fi
-
-case ${OSARCH} in # actually we should check build_os
-*BSD|mingw|darwin*)
- BUILDSUM=`echo ${TMP} | md5 | cut -c1-32`
- ;;
-*)
- BUILDSUM=`echo ${TMP} | md5sum | cut -c1-32`
- ;;
-esac
-
-echo "#define AST_BUILDOPT_SUM \"${BUILDSUM}\""