From b36ed3f8c5c07dc2607c7ac33971345032c4bb54 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Tue, 4 Jan 2022 18:21:45 +0000 Subject: [PATCH] Makefile.in: don't pre-emptively include /usr/local/include this is bad style and prevents cross-compilation if a user happens to have one of the used headers installed in that location. if a user uses libraries in non-system-default locations, the onus is on him to add the respective CPPFLAGS/LDFLAGS when invoking configure. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 85a4a0c..2169e59 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,7 +19,7 @@ ASM_OBJS = @ASM_OBJS@ SYS_DEFS = @DEFS@ @ENDIAN@ @ASM@ @SYS_DEFS@ SYS_OBJS = @SYS_OBJS@ $(ASM_OBJS) -SYS_INCS = -I/usr/local/include @XINCS@ -I./sys/nix +SYS_INCS = @XINCS@ -I./sys/nix FB_OBJS = @FB_OBJS@ @JOY@ @SOUND@ FB_LIBS = -- 2.11.4.GIT