This is an automated email from the ASF dual-hosted git repository. alexey pushed a commit to branch branch-1.18.x in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 8e9294f2f6cb017480f8ff05aae51e1cfc9128fc Author: Alexey Serbin <[email protected]> AuthorDate: Thu Jul 31 08:07:52 2025 -0700 [docs] redhat-lsb-core is needed only on RHEL/CentOS < 9 The redhat-lsb-core isn't needed RHEL9, so remove it from the list of 'common' packages for RHEL/CentOS: it's mentioned in a separate line. Also, since devtoolset isn't needed on RHEL/CentOS 8 and newer, update the Build Script for RHEL/CentOS to reflect that. Change-Id: Iba7b39cb4bae12b0455858abc271e09ff66c4f9c Reviewed-on: http://gerrit.cloudera.org:8080/23230 Tested-by: Kudu Jenkins Reviewed-by: Marton Greber <[email protected]> (cherry picked from commit 6757e13b908c797c25556efc4bcf7e7a1266d294) Reviewed-on: http://gerrit.cloudera.org:8080/23231 Reviewed-by: Abhishek Chennaka <[email protected]> --- docs/installation.adoc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/installation.adoc b/docs/installation.adoc index 2e49e5a6a..e96dbe376 100644 --- a/docs/installation.adoc +++ b/docs/installation.adoc @@ -101,7 +101,7 @@ on a version older than 8.0, the Red Hat Developer Toolset must be installed $ sudo yum install autoconf automake cyrus-sasl-devel cyrus-sasl-gssapi \ cyrus-sasl-plain flex gcc gcc-c++ gdb git java-1.8.0-openjdk-devel \ krb5-server krb5-workstation krb5-devel libtool make openssl-devel patch \ - pkgconfig redhat-lsb-core rsync unzip vim-common which + pkgconfig rsync unzip vim-common which ---- . If building on RHEL or CentOS older than 8.0, install the Red Hat Developer Toolset. @@ -251,9 +251,10 @@ sudo yum -y install autoconf automake curl cyrus-sasl-devel cyrus-sasl-gssapi \ krb5-server krb5-workstation krb5-devel libtool make openssl-devel patch \ pkgconfig rsync unzip vim-common which # Uncomment the next line if installing on RHEL/CentOS < 9 -# sudo yum -y install redhat-lsb-core -sudo yum -y install centos-release-scl-rh -sudo yum -y install devtoolset-8 +#sudo yum -y install redhat-lsb-core +# Uncomment the next two lines if installing on RHEL/CentOS < 8 +#sudo yum -y install centos-release-scl-rh +#sudo yum -y install devtoolset-8 git clone https://github.com/apache/kudu cd kudu build-support/enable_devtoolset.sh thirdparty/build-if-necessary.sh
