diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2020-11-22 17:41:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 17:41:44 +0100 |
commit | 02562949218dded905b100cff21eae15364598ce (patch) | |
tree | 3a1e5d015a6a622241fdc99078990be727c2da3e /common_power.h | |
parent | 60e1fddca7634917a56bcc4cb43bbbee08eb136a (diff) | |
download | openblas-02562949218dded905b100cff21eae15364598ce.tar.gz openblas-02562949218dded905b100cff21eae15364598ce.tar.bz2 openblas-02562949218dded905b100cff21eae15364598ce.zip |
Fix syntax mixup
Diffstat (limited to 'common_power.h')
-rw-r--r-- | common_power.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common_power.h b/common_power.h index 6fb2af30a..a49197fd7 100644 --- a/common_power.h +++ b/common_power.h @@ -849,8 +849,8 @@ Lmcount$lazy_ptr: #else #define BUFFER_SIZE ( 16 << 20) #endif -#ifeq ($(DYNAMIC_ARCH), 1) -#undefine BUFFER_SIZE +#ifdef DYNAMIC_ARCH +#undef BUFFER_SIZE #define BUFFER_SIZE (64 << 22) #endif |