diff options
| author | Jon Nelson | 2002-01-05 21:26:15 +0100 |
|---|---|---|
| committer | Jon Nelson | 2002-01-05 21:26:15 +0100 |
| commit | c79e99824e064382cbbfed2bc56d5d6aae710ff0 (patch) | |
| tree | 4355a5bdfb48d94edcb1936b293550bb2e9d192a /sources | |
| parent | General cleanup of boa.mk and busybox.mk (diff) | |
| download | buildroot-c79e99824e064382cbbfed2bc56d5d6aae710ff0.tar.gz buildroot-c79e99824e064382cbbfed2bc56d5d6aae710ff0.tar.xz buildroot-c79e99824e064382cbbfed2bc56d5d6aae710ff0.zip | |
not working 100% just yet, but getting closer
Diffstat (limited to 'sources')
| -rw-r--r-- | sources/uClibc-Config.awk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sources/uClibc-Config.awk b/sources/uClibc-Config.awk new file mode 100644 index 000000000..c265535a3 --- /dev/null +++ b/sources/uClibc-Config.awk @@ -0,0 +1,11 @@ +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 } +} |
