Browse Source

Update Makefile.system

Define AWK as "nawk" for SunOS (actually Illumos) only - fixes #763
tags/v0.2.16.rc1
Martin Kroeker 9 years ago
parent
commit
44062517eb
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      Makefile.system

+ 2
- 1
Makefile.system View File

@@ -957,17 +957,18 @@ ifeq ($(OSNAME), SunOS)
TAR = gtar
PATCH = gpatch
GREP = ggrep
AWK = nawk
else
TAR = tar
PATCH = patch
GREP = grep
AWK = awk
endif

ifndef MD5SUM
MD5SUM = md5sum
endif

AWK = nawk

REVISION = -r$(VERSION)
MAJOR_VERSION = $(word 1,$(subst ., ,$(VERSION)))


Loading…
Cancel
Save