From 88fdab5d77bf28ddf161171c370902239f771f4e Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Sat, 6 Apr 2024 17:01:10 +0200 Subject: nginx: add patch to fix compilation error on mips targets Add patch to fix compilation error on mips targets. This was triggered after enabling LTO. It was discovered that -fPIC is enabled on building dynamic modules in CFLAGS but was missing on linking them. This patch adds the missing -fPIC also on linking. Fixes: 3b13b08ad98d ("nginx: Fix compilation with LTO") Signed-off-by: Christian Marangi --- net/nginx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/nginx/Makefile') diff --git a/net/nginx/Makefile b/net/nginx/Makefile index 14c856a31..7478078de 100644 --- a/net/nginx/Makefile +++ b/net/nginx/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nginx PKG_VERSION:=1.25.4 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=nginx-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://nginx.org/download/ -- cgit v1.2.3