diff options
author | Mattes D <github@xoft.cz> | 2013-12-14 15:51:58 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-12-14 15:51:58 +0100 |
commit | 3bf65e986b6f338d148a011fa22cb7e5ec0277e5 (patch) | |
tree | d2dbb4c357f0409c334dd1f299bb187b8d7b64df | |
parent | Merge pull request #423 from mc-server/redstoneimprovements (diff) | |
parent | Fixed clang autodetection. (diff) | |
download | cuberite-3bf65e986b6f338d148a011fa22cb7e5ec0277e5.tar cuberite-3bf65e986b6f338d148a011fa22cb7e5ec0277e5.tar.gz cuberite-3bf65e986b6f338d148a011fa22cb7e5ec0277e5.tar.bz2 cuberite-3bf65e986b6f338d148a011fa22cb7e5ec0277e5.tar.lz cuberite-3bf65e986b6f338d148a011fa22cb7e5ec0277e5.tar.xz cuberite-3bf65e986b6f338d148a011fa22cb7e5ec0277e5.tar.zst cuberite-3bf65e986b6f338d148a011fa22cb7e5ec0277e5.zip |
Diffstat (limited to '')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index c8cdd35e1..d729268e7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -88,7 +88,7 @@ CXX_OPTIONS += -Wall ################################################### # Fix Crypto++ warnings in clang -ifeq ($(shell $(CXX) --version 2>&1 | grep -i -c "clang version"),1) +ifeq ($(shell $(CXX) --version 2>&1 | grep -i -c "clang"),1) CC_OPTIONS += -DCRYPTOPP_DISABLE_ASM CXX_OPTIONS += -DCRYPTOPP_DISABLE_ASM endif |