summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2019-02-25 08:41:35 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2019-02-25 08:41:35 +0200
commitf43277137b513cd39bebce281df679076f5ba1ee (patch)
tree53f63edf2479d34669e8df55ca438485142e64b9
parent67b8f4f501d0ad10467413c18fe0c673048c9834 (diff)
make: use private override
not really needed as override has already been specified for CPPFLAGS before, but if those lines were removed/refactored, this would break.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bfcca00..f653580 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ $(bins): %:
$(LINK.c) $(filter %.c %.a,$^) $(LDLIBS) -o $@
memio-ptrace.a: src/mem/io-ptrace.c src/mem/io.h
-memio-uio.a: private CPPFLAGS += -D_GNU_SOURCE
+memio-uio.a: private override CPPFLAGS += -D_GNU_SOURCE
memio-uio.a: src/mem/io-uio.c src/mem/io.h
memio-stream.a: src/mem/io-stream.c src/mem/io-stream.h