From 56e5e43497396fa8f46af706723f4e58755a232b Mon Sep 17 00:00:00 2001 From: chengsongyuxuan Date: Tue, 23 Sep 2025 10:25:06 +0800 Subject: [PATCH] Fix AR parameter order issue --- netty.spec | 5 ++++- reproducible.patch | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/netty.spec b/netty.spec index 7b318c7..8f01c11 100644 --- a/netty.spec +++ b/netty.spec @@ -2,7 +2,7 @@ Name: netty Version: 4.1.126 -Release: 1 +Release: 2 Summary: An asynchronous event-driven network application framework and tools for Java License: Apache-2.0 URL: https://netty.io/ @@ -211,6 +211,9 @@ export CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" %files help -f .mfiles-javadoc %changelog +* Tue Sep 23 2025 chengsongyuxuan - 4.1.126-2 +- Fix AR parameter order issue + * Thu Sep 18 2025 yaoxin <1024769339@qq.com> - 4.1.126-1 - Update to 4.1.126 for fix CVE-2025-58056 and CVE-2025-58057 diff --git a/reproducible.patch b/reproducible.patch index 516a40b..b45a333 100644 --- a/reproducible.patch +++ b/reproducible.patch @@ -7,7 +7,7 @@ Index: netty-netty-4.1.108.Final/transport-native-unix-common/Makefile $(LIB): $(OBJS) mkdir -p $(LIB_DIR) - $(AR) rcs $(LIB) $^ -+ $(AR) -D rcs $(LIB) $^ ++ $(AR) rcs -D $(LIB) $^ $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c mkdir -p $(OBJ_DIR) -- Gitee