diff options
author | Rickard Green <[email protected]> | 2018-09-17 10:26:13 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2018-09-17 10:26:13 +0200 |
commit | 93bf02fef9f560ae3d7464bcff6ce4c81c155263 (patch) | |
tree | d59a75ddb2063db44e8ae99109ed2a894cdd8e91 /erts | |
parent | 94e49f0b8e8ad45ba6f294356bebf3723d5ddf68 (diff) | |
parent | 01cb61c5dc84bd64acfdfb69f1b072d026cfa114 (diff) | |
download | otp-93bf02fef9f560ae3d7464bcff6ce4c81c155263.tar.gz otp-93bf02fef9f560ae3d7464bcff6ce4c81c155263.tar.bz2 otp-93bf02fef9f560ae3d7464bcff6ce4c81c155263.zip |
Merge branch 'maint'
* maint:
Fix PGO configure test
Diffstat (limited to 'erts')
-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 01b7c1bfd7..d211b81878 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -583,7 +583,7 @@ AC_MSG_CHECKING([whether to do PGO of erts]) if test $enable_pgo = no; then AC_MSG_RESULT([no, disabled by user]) elif test $CROSS_COMPILING = yes; then - if $enable_pgo = yes; then + if test $enable_pgo = yes; then AC_MSG_ERROR(cannot use PGO when cross-compiling) else AC_MSG_RESULT([no, cross compiling]) |