Browse Source

Merge pull request #764 from martin-frbg/develop

Update Makefile.system to fix awk/nawk issue #763
tags/v0.2.16.rc1
Zhang Xianyi 10 years ago
parent
commit
e003a1294c
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