Fixing fedora classifier on master branch.

This commit is contained in:
nmittler 2015-09-18 12:30:19 -07:00
parent 2016a88f5c
commit b82ac3166a
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ def tcnative_classifier = osdetector.classifier;
// Fedora variants use a different soname for OpenSSL than other linux distributions // Fedora variants use a different soname for OpenSSL than other linux distributions
// (see http://netty.io/wiki/forked-tomcat-native.html). // (see http://netty.io/wiki/forked-tomcat-native.html).
if (osdetector.os == "linux" && osdetector.release.isLike("fedora")) { if (osdetector.os == "linux" && osdetector.release.isLike("fedora")) {
tcnative_classifier += "_fedora"; tcnative_classifier += "-fedora";
} }
dependencies { dependencies {

View File

@ -114,7 +114,7 @@ subprojects {
// Fedora variants use a different soname for OpenSSL than other linux distributions // Fedora variants use a different soname for OpenSSL than other linux distributions
// (see http://netty.io/wiki/forked-tomcat-native.html). // (see http://netty.io/wiki/forked-tomcat-native.html).
if (osdetector.os == "linux" && osdetector.release.isLike("fedora")) { if (osdetector.os == "linux" && osdetector.release.isLike("fedora")) {
tcnative_suffix += "_fedora"; tcnative_suffix += "-fedora";
} }
def epoll_suffix = ""; def epoll_suffix = "";