summaryrefslogtreecommitdiff
path: root/Makefile.system
diff options
context:
space:
mode:
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>2016-01-26 20:35:25 +0100
committerMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>2016-01-26 20:35:25 +0100
commit44062517eb9dd111ba7dc89a67e1b4cd83ababb1 (patch)
treea8240538cf3468204ae851f9d572720dbe635791 /Makefile.system
parent13f0f8c10ea1e897fe46125962b5a3781fdda7f5 (diff)
downloadopenblas-44062517eb9dd111ba7dc89a67e1b4cd83ababb1.tar.gz
openblas-44062517eb9dd111ba7dc89a67e1b4cd83ababb1.tar.bz2
openblas-44062517eb9dd111ba7dc89a67e1b4cd83ababb1.zip
Update Makefile.system
Define AWK as "nawk" for SunOS (actually Illumos) only - fixes #763
Diffstat (limited to 'Makefile.system')
-rw-r--r--Makefile.system3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.system b/Makefile.system
index 1e9fcb161..c52dacfec 100644
--- a/Makefile.system
+++ b/Makefile.system
@@ -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)))