diff options
author | Rickard Green <[email protected]> | 2016-09-22 19:09:00 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2016-09-23 15:40:50 +0200 |
commit | 684bfb7172720b9cd0383c3db0fd25cad3f6d966 (patch) | |
tree | 197e655a21ab26bd744e148924c4329d67d6bc74 /erts/configure.in | |
parent | e6059f94571a6c968c15b9de6b7d63ebd64f9acf (diff) | |
download | otp-684bfb7172720b9cd0383c3db0fd25cad3f6d966.tar.gz otp-684bfb7172720b9cd0383c3db0fd25cad3f6d966.tar.bz2 otp-684bfb7172720b9cd0383c3db0fd25cad3f6d966.zip |
Fix posix_memalign configure test
Diffstat (limited to 'erts/configure.in')
-rw-r--r-- | erts/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/configure.in b/erts/configure.in index 883ce2db68..5c95f2fa35 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -2079,7 +2079,7 @@ int main(void) { fi]);; esac -if test $have_posix_memalign = yes; then +if test "$have_posix_memalign" = "yes"; then AC_DEFINE(HAVE_POSIX_MEMALIGN,[1], [Define to 1 if you have the `posix_memalign' function.]) fi |