summaryrefslogtreecommitdiff
path: root/mungeconf
diff options
context:
space:
mode:
Diffstat (limited to 'mungeconf')
-rwxr-xr-xmungeconf20
1 files changed, 0 insertions, 20 deletions
diff --git a/mungeconf b/mungeconf
deleted file mode 100755
index 95170450..00000000
--- a/mungeconf
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /bin/sh
-
-# stdout is normally config.h
-
-case $# in
-2) ;;
-*) echo "Usage: mungeconf sysfile distfile" >&2 ; exit 2 ;;
-esac
-
-sed '/^#/d; /^MAKE_*/d' $1 | # strip comments and Makefile stuff
-sed '1s:.*:s~__SYSTEM__~&~:
-2,$s:^\([^ ]*\)[ ].*:s~^/\\* #define[ ]*\1.*~#define &~:' >sedscr
-
-sed -f sedscr $2
-
-echo
-echo '/* anything that follows is for system-specific short-term kludges */'
-grep '^#define' $1 # for system-specific short-term kludges
-
-rm -f sedscr