Support newest libjpeg-turbo on Oracle

This commit is contained in:
Dmitry Maksyoma
2023-01-24 21:29:05 +13:00
parent 8cd57a612d
commit c34724f421
3 changed files with 16 additions and 3 deletions

View File

@@ -1,8 +1,10 @@
#!/bin/bash
detect_distro() {
if [ -f /etc/centos-release ]; then
DISTRO=centos
elif [ -f /etc/oracle-release ]; then
DISTRO=oracle7
DISTRO=oracle
elif [ -f /usr/bin/zypper ]; then
DISTRO=opensuse
else