From 00f3c4227ba752dbee05354d09496ce7dbae0517 Mon Sep 17 00:00:00 2001 From: Josh Berdine Date: Fri, 16 Dec 2016 03:42:17 -0800 Subject: [PATCH] Add quoting to unbreak tests Summary: echoing composite commands does not parse. Reviewed By: jvillard Differential Revision: D4336180 fbshipit-source-id: c726383 --- Makefile.config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.config.in b/Makefile.config.in index 89aead29c..84cac53ae 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -124,5 +124,5 @@ CLANG_DEPS = $(addprefix $(PYTHON_LIB_DIR)/, \ JAVA_MODELS_JAR = $(LIB_DIR)/java/models.jar define silent_on_success - $(1) >/dev/null 2>/dev/null || (echo $(1); $(1) && exit 1) + $(1) >/dev/null 2>/dev/null || ($(1) && exit 1) endef