aboutsummaryrefslogtreecommitdiffstats
path: root/erts/configure.in
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2018-09-17 10:26:13 +0200
committerRickard Green <[email protected]>2018-09-17 10:26:13 +0200
commit93bf02fef9f560ae3d7464bcff6ce4c81c155263 (patch)
treed59a75ddb2063db44e8ae99109ed2a894cdd8e91 /erts/configure.in
parent94e49f0b8e8ad45ba6f294356bebf3723d5ddf68 (diff)
parent01cb61c5dc84bd64acfdfb69f1b072d026cfa114 (diff)
downloadotp-93bf02fef9f560ae3d7464bcff6ce4c81c155263.tar.gz
otp-93bf02fef9f560ae3d7464bcff6ce4c81c155263.tar.bz2
otp-93bf02fef9f560ae3d7464bcff6ce4c81c155263.zip
Merge branch 'maint'
* maint: Fix PGO configure test
Diffstat (limited to 'erts/configure.in')
-rw-r--r--erts/configure.in2
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])