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 TAR = gtar
PATCH = gpatch PATCH = gpatch
GREP = ggrep GREP = ggrep
AWK = nawk
else else
TAR = tar TAR = tar
PATCH = patch PATCH = patch
GREP = grep GREP = grep
AWK = awk
endif endif


ifndef MD5SUM ifndef MD5SUM
MD5SUM = md5sum MD5SUM = md5sum
endif endif


AWK = nawk


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


Loading…
Cancel
Save