summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2016-03-23 11:57:29 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2016-03-23 11:57:29 (GMT)
commit3a56b775da86942ddc7f0e042407710234949c78 (patch)
treef8b1574ea62adfdd389a2e48f42a12e8c013f12b /Makefile.pre.in
parentd5871e62ddf1e826b3aa1fdc0cb888e6090e5408 (diff)
downloadcpython-3a56b775da86942ddc7f0e042407710234949c78.zip
cpython-3a56b775da86942ddc7f0e042407710234949c78.tar.gz
cpython-3a56b775da86942ddc7f0e042407710234949c78.tar.bz2
Makefile.pre.in (profile-opt): Fix bashism.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 9b4ab8d..fc2d709 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -483,7 +483,7 @@ build_all: $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks Programs/_testembed
# Compile a binary with profile guided optimization.
profile-opt:
- @if [ $(LLVM_PROF_ERR) == yes ]; then \
+ @if [ $(LLVM_PROF_ERR) = yes ]; then \
echo "Error: Cannot perform PGO build because llvm-profdata was not found in PATH" ;\
echo "Please add it to PATH and run ./configure again" ;\
exit 1;\