diff options
author | Sadie Powell <sadie@witchery.services> | 2021-06-09 02:36:31 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-06-09 02:36:31 +0100 |
commit | d298378b3d7b6e60afe199739e26db93960a89c4 (patch) | |
tree | 15eeedd249c6b909c42ab3afb6d87624ee487395 | |
parent | 7ae94300b62ebf0740e3a37b1a9ecd604887a3c5 (diff) |
Fix the compiler_info name for the Intel compiler.
-rw-r--r-- | make/template/main.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index 53430c78e..319d39c08 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -67,7 +67,7 @@ INSTMODE_BIN ?= 0755 INSTMODE_TXT ?= 0644 INSTMODE_PRV ?= 0640 -ifneq ($(COMPILER), ICC) +ifneq ($(COMPILER), Intel) CORECXXFLAGS += -Woverloaded-virtual -Wshadow ifneq ($(SYSTEM), openbsd) CORECXXFLAGS += -pedantic -Wformat=2 -Wmissing-format-attribute -Wno-format-nonliteral |