aboutsummaryrefslogtreecommitdiff
path: root/llvm_mode
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2019-09-20 18:22:01 +0200
committervan Hauser <vh@thc.org>2019-09-20 18:22:01 +0200
commitdd0a8c200c5de8ee87c2423ac1b954bb311ba872 (patch)
tree71f4c06111bb1168482be7b9fccd329ee5a120c7 /llvm_mode
parent272a43be11bff6f32b428901c92c06e769afa04a (diff)
downloadAFLplusplus-dd0a8c200c5de8ee87c2423ac1b954bb311ba872.tar.gz
Makefile fix
Diffstat (limited to 'llvm_mode')
-rw-r--r--llvm_mode/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_mode/Makefile b/llvm_mode/Makefile
index f635ca83..ed853d9d 100644
--- a/llvm_mode/Makefile
+++ b/llvm_mode/Makefile
@@ -37,7 +37,7 @@ endif
LLVMVER = $(shell $(LLVM_CONFIG) --version)
LLVM_UNSUPPORTED = $(shell $(LLVM_CONFIG) --version | egrep -q '^[12]|^3\.0|^1[0-9]' && echo 1 || echo 0 )
-LLVM_MAJOR = ($shell $(LLVM_CONFIG) --version | sed 's/\..*//')
+LLVM_MAJOR = $(shell $(LLVM_CONFIG) --version | sed 's/\..*//')
ifeq "$(LLVM_UNSUPPORTED)" "1"
$(warn llvm_mode only supports versions 3.8.0 up to 9)