summaryrefslogtreecommitdiffstats
path: root/sources/uClibc-Config.awk
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-04-26 11:45:55 +0000
committerEric Andersen <andersen@codepoet.org>2002-04-26 11:45:55 +0000
commit08782ae7d8812933ad3f932132955ea1c0fb1e52 (patch)
tree1808993dc06e0c9a473c2e77236ce5d31039466d /sources/uClibc-Config.awk
parent057adc1c84e0082cdf88da23a32bf2098680ff4e (diff)
downloadbuildroot-novena-08782ae7d8812933ad3f932132955ea1c0fb1e52.tar.gz
buildroot-novena-08782ae7d8812933ad3f932132955ea1c0fb1e52.zip
Major rework
Diffstat (limited to 'sources/uClibc-Config.awk')
-rw-r--r--sources/uClibc-Config.awk11
1 files changed, 0 insertions, 11 deletions
diff --git a/sources/uClibc-Config.awk b/sources/uClibc-Config.awk
deleted file mode 100644
index c265535a3..000000000
--- a/sources/uClibc-Config.awk
+++ /dev/null
@@ -1,11 +0,0 @@
-BEGIN { FS=" =";
- REG1="DODEBUG|INCLUDE_RPC|DOPIC";
- REG2="DOLFS";
-}
-{
- if ($0 ~ "^" REG1)
- { print $1 " = false" }
- else if ($0 ~ "^" REG2)
- { print $1 " = true" }
- else { print $0 }
-}