summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-11-05 06:31:40 +0000
committerEric Andersen <andersen@codepoet.org>2003-11-05 06:31:40 +0000
commitc89ad8d478e998e842921e99d3b8a9eda7084e63 (patch)
tree2dab186fdb5c49633d61f979c88d4f61be427e9b /Rules.mak
parent46c48a7091b56d6baa6f7894f03cacad42074d24 (diff)
Kill initfini.awk
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak7
1 files changed, 0 insertions, 7 deletions
diff --git a/Rules.mak b/Rules.mak
index 3b5515add..469427b30 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -79,13 +79,6 @@ endif
check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
then echo "$(1)"; else echo "$(2)"; fi)
-# check if we have nawk, otherwise user awk
-AWK:=$(shell if [ -x /usr/bin/nawk ]; then echo "/usr/bin/nawk"; \
- else if [ -x /usr/bin/awk ]; then echo "/usr/bin/awk"; \
- else if [ -x /bin/awk ]; then echo "/bin/awk"; \
- else echo "awk"; fi; fi; fi)
-
-
# Make certain these contain a final "/", but no "//"s.
RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(RUNTIME_PREFIX))))))
DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(DEVEL_PREFIX))))))