Commit fc001cb0 authored by Aurelio Colosimo's avatar Aurelio Colosimo

Makefile: INTERNAL_PRINTF var, not defined as default, to avoid double pp_printf def

Signed-off-by: Aurelio Colosimo's avatarAurelio Colosimo <aurelio@aureliocolosimo.it>
parent 26f42287
......@@ -2,7 +2,10 @@
# Diagnostics: we have tree levels: none, full and limited
# full: use a complete printf and the diag code
OBJ-$(HAS_FULL_DIAG) += diag/diag-yes.o diag/diag-printf.o diag/printf-full.o
OBJ-$(HAS_FULL_DIAG) += diag/diag-yes.o
ifdef INTERNAL_PRINTF
OBJ-$(HAS_FULL_DIAG) += diag/diag-printf.o diag/printf-full.o
endif
# limited: use a minimal printf (can't coexist with FULL_DIAG)
ifndef HAS_FULL_DIAG
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment