We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3159759 commit d1554b8Copy full SHA for d1554b8
build/run.sh
@@ -106,10 +106,8 @@ build_lua_sandbox_extensions() {
106
fi
107
cmake_args="$cmake_args -DEXT_$ext=true"
108
elif [ "$CPACK_GENERATOR" = "RPM" ]; then
109
- if rpm -qa | grep -q compat-openssl10; then
110
- # Newer Fedora installs 1.1 by default but also installs a 1.0
111
- # compat package; if we see that installed also grab the devel version
112
- # of it
+ if [ -f "/etc/redhat-release" ] && grep -q '^Fedora' /etc/redhat-release; then
+ # Newer Fedora installs 1.1 by default, install the 1.0 compat package as well
113
packages="$packages compat-openssl10-devel"
114
else
115
packages="$packages openssl-devel"
0 commit comments