diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 06:31:40 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 06:31:40 +0000 |
commit | c89ad8d478e998e842921e99d3b8a9eda7084e63 (patch) | |
tree | 2dab186fdb5c49633d61f979c88d4f61be427e9b /Rules.mak | |
parent | 46c48a7091b56d6baa6f7894f03cacad42074d24 (diff) |
Kill initfini.awk
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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)))))) |