vim: Don't try to build with custom _FORTIFY_SOURCE

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-02-05 16:46:06 +00:00
parent be60a304dd
commit 900e1c5722

View File

@@ -32,6 +32,10 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/vim90
TARGET = $(DIR_INFO)/$(THISAPP)
# vim tries to build itself with FORTIFY_SOURCE=1 and is not very good at
# filtering out any CFLAGS that might change that. So we do this ourselves.
CFLAGS := $(filter-out -Wp$(COMMA)-U_FORTIFY_SOURCE,$(CFLAGS))
###############################################################################
# Top-level Rules
###############################################################################