diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2024-04-06 17:01:10 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2024-04-06 17:02:58 +0200 |
commit | 88fdab5d77bf28ddf161171c370902239f771f4e (patch) | |
tree | 48ec02ac1dce05d9561cc4394f8c601dd52d3b41 /net/nginx/Makefile | |
parent | 9d809674e3c243327015c781ea5fe3e165c399f1 (diff) |
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 <ansuelsmth@gmail.com>
Diffstat (limited to 'net/nginx/Makefile')
-rw-r--r-- | net/nginx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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/ |