diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-07-13 08:50:24 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-07-17 06:57:52 -0300 |
commit | b308467c916aa7acc5069802ab76a9f657434701 (patch) | |
tree | 59466def7721767a15f60ca42cc72892390a30e7 /scripts | |
parent | e0de2b59e243c88296fc983e32dd6484365e87a7 (diff) | |
download | linux-b308467c916aa7acc5069802ab76a9f657434701.tar.gz linux-b308467c916aa7acc5069802ab76a9f657434701.tar.bz2 linux-b308467c916aa7acc5069802ab76a9f657434701.zip |
scripts/sphinx-pre-install: fix script for RHEL/CentOS
There's a missing parenthesis at the script, with causes it to
fail to detect non-Fedora releases (e. g. RHEL/CentOS).
Tested with Centos 7.6.1810.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/sphinx-pre-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/sphinx-pre-install b/scripts/sphinx-pre-install index f230e65329a2..101ddd00bf02 100755 --- a/scripts/sphinx-pre-install +++ b/scripts/sphinx-pre-install @@ -371,7 +371,7 @@ sub give_redhat_hints() # # Checks valid for RHEL/CentOS version 7.x. # - if (! $system_release =~ /Fedora/) { + if (!($system_release =~ /Fedora/)) { $map{"virtualenv"} = "python-virtualenv"; } |