From f904453db23725129fe13ccc07199da274c71a2e Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Mon, 26 Mar 2012 16:05:49 -0700 Subject: [PATCH] Only mention non-host triples if they exist. --- Makefile.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.in b/Makefile.in index 758f726f9d9..910f6b8a566 100644 --- a/Makefile.in +++ b/Makefile.in @@ -63,7 +63,10 @@ CFG_INFO := $(info cfg: make restarts: $(MAKE_RESTARTS)) endif CFG_INFO := $(info cfg: shell host triple $(CFG_HOST_TRIPLE)) + +ifneq ($(wildcard $(NON_HOST_TRIPLES)),) CFG_INFO := $(info cfg: non host triples $(NON_HOST_TRIPLES)) +endif ifdef CFG_DISABLE_OPTIMIZE $(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))