diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-22 20:01:44 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-22 20:01:44 +0200 |
commit | ff1f6af7e900ab4d76c91b9f2f4a60da259cd91d (patch) | |
tree | a31e420aa5ef5f513c3371988a1be11fe03c48a2 /llvm_mode | |
parent | 9aefe7a0402d4389aaff1f070c84ea1b95abc0fd (diff) | |
download | afl++-ff1f6af7e900ab4d76c91b9f2f4a60da259cd91d.tar.gz |
wine mode && fix llvm makefile
Diffstat (limited to 'llvm_mode')
-rw-r--r-- | llvm_mode/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_mode/Makefile b/llvm_mode/Makefile index 2d35505e..96aba898 100644 --- a/llvm_mode/Makefile +++ b/llvm_mode/Makefile @@ -83,7 +83,7 @@ CXX = $(LLVM_BINDIR)/clang++ ifeq "$(shell test -e $(CC) || echo 1 )" "1" # llvm-config --bindir is not providing a valid path, so ... - ifeq "$(shell test -e "$(BIN_DIR)/clang" && echo 1)" "1" + ifeq "$(shell test -e '$(BIN_DIR)/clang' && echo 1)" "1" # we found one in the local install directory, lets use these CC = $(BIN_DIR)/clang CXX = $(BIN_DIR)/clang++ |