From 974a1999263205ffabdef96d5fb1ab5c8a060911 Mon Sep 17 00:00:00 2001 From: lyn1001 Date: Fri, 12 Aug 2022 14:20:00 +0800 Subject: [PATCH] Update build-classpath calls to ECJ to specify the JAR we want to use (cherry picked from commit 372e945167512bf01e58fe2646348051d57fb5b1) --- tomcat.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tomcat.spec b/tomcat.spec index 740f3ea..84cfd56 100644 --- a/tomcat.spec +++ b/tomcat.spec @@ -13,7 +13,7 @@ Name: tomcat Epoch: 1 Version: %{major_version}.%{minor_version}.%{micro_version} -Release: 27 +Release: 28 Summary: Implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies License: ASL 2.0 URL: http://tomcat.apache.org/ @@ -325,7 +325,7 @@ pushd %{buildroot}%{_javadir}/%{name} ln -s $(build-classpath apache-commons-collections) commons-collections.jar ln -s $(build-classpath apache-commons-dbcp) commons-dbcp.jar ln -s $(build-classpath apache-commons-pool) commons-pool.jar - ln -s $(build-classpath ecj) jasper-jdt.jar + ln -s $(build-classpath ecj/ecj) jasper-jdt.jar cp -a %{buildroot}%{_datadir}/%{name}/bin/tomcat-juli.jar ./ popd @@ -502,6 +502,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Aug 12 2022 liyanan - 1:9.0.10-28 +- Update build-classpath calls to ECJ to specify the JAR we want to use + * Tue May 24 2022 chenchen - 1:9.0.10-27 - fix build error -- Gitee