diff options
author | Gunter Knauf <gk@gknw.de> | 2007-01-28 14:43:25 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-01-28 14:43:25 +0000 |
commit | b3e23373bdf886d11360c04801f6633a646055a5 (patch) | |
tree | 387dfff9f0d29f776aa4f033cafa26444d636fae /src | |
parent | e5adab39b165baa3f3f8d7222573f46d54e30771 (diff) |
use var for awk.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.netware | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.netware b/src/Makefile.netware index 7eac973a2..ab43274c7 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -68,6 +68,7 @@ ifdef METROWERKS else CC = gcc endif +AWK = awk CP = cp -afv # RM = rm -f # if you want to mark the target as MTSAFE you will need a tool for @@ -180,7 +181,7 @@ $(OBJDIR)/%.o: %.c $(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR) @echo Creating $@ - @awk -f ../packages/NetWare/get_ver.awk $< > $@ + @$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@ dist: all -$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv |