linux: Fix regex patterns for detecting Fedora in script/linux (#22611)
In `script/linux` file, in order to install build dependencies we check ID and VERSION_ID fields of `/etc/os-release` file for installing os-specific packages. The regex patterns for those fields are wrong because there's no `"` character after `ID=` or `VERSION_ID=`. This causes `grep` to fail. So I extended the pattern by adding `"?` after each `"` character to bypass the cause of failure. Release Notes: - N/A Signed-off-by: thehxdev <hossein.khosravi.ce@gmail.com>
This commit is contained in:
parent
3c207209cb
commit
8c253af451
1 changed files with 5 additions and 5 deletions
10
script/linux
10
script/linux
|
@ -86,7 +86,7 @@ if [[ -n $dnf ]] || [[ -n $yum ]]; then
|
|||
)
|
||||
# perl used for building openssl-sys crate. See: https://docs.rs/openssl/latest/openssl/
|
||||
# openbsd-netcat is unavailable in RHEL8/9 (and nmap-ncat doesn't support sockets)
|
||||
if grep -qP '^ID="(fedora)' /etc/os-release; then
|
||||
if grep -qP '^ID="?(fedora)' /etc/os-release; then
|
||||
deps+=(
|
||||
perl-FindBin
|
||||
perl-IPC-Cmd
|
||||
|
@ -95,20 +95,20 @@ if [[ -n $dnf ]] || [[ -n $yum ]]; then
|
|||
netcat
|
||||
mold
|
||||
)
|
||||
elif grep -qP '^ID="(rhel|rocky|alma|centos|ol)' /etc/os-release; then
|
||||
elif grep -qP '^ID="?(rhel|rocky|alma|centos|ol)' /etc/os-release; then
|
||||
deps+=( perl-interpreter )
|
||||
fi
|
||||
|
||||
# gcc-c++ is g++ on RHEL8 and 8.x clones
|
||||
if grep -qP '^ID="(rhel|rocky|alma|centos|ol)' /etc/os-release \
|
||||
&& grep -qP '^VERSION_ID="8' /etc/os-release; then
|
||||
if grep -qP '^ID="?(rhel|rocky|alma|centos|ol)' /etc/os-release \
|
||||
&& grep -qP '^VERSION_ID="?(8)' /etc/os-release; then
|
||||
deps+=( gcc-c++ )
|
||||
else
|
||||
deps+=( g++ )
|
||||
fi
|
||||
|
||||
# libxkbcommon-x11-devel is in a non-default repo on RHEL 8.x/9.x (except on AmazonLinux)
|
||||
if grep -qP '^VERSION_ID="(8|9)' /etc/os-release && grep -qP '^ID="(rhel|rocky|centos|alma|ol)' /etc/os-release; then
|
||||
if grep -qP '^VERSION_ID="?(8|9)' /etc/os-release && grep -qP '^ID="?(rhel|rocky|centos|alma|ol)' /etc/os-release; then
|
||||
$maysudo dnf install -y 'dnf-command(config-manager)'
|
||||
if grep -qP '^PRETTY_NAME="(AlmaLinux 8|Rocky Linux 8)' /etc/os-release; then
|
||||
$maysudo dnf config-manager --set-enabled powertools
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue