From 4b2dc1e38bded387aa6a5cef0a6065a582ac1f51 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 4 Aug 2014 00:20:40 +0200 Subject: [PATCH] Fix the build Quoting accident. "echo -e" is not a command that the shell knows, echo -e is. --- gtk/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 2dac40d423..2f74d2e862 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -22,7 +22,7 @@ SUBDIRS = inspector native . if OS_DARWIN ECHO="echo" else - ECHO="echo -e" + ECHO=echo -e endif if HAVE_CLOUDPRINT