From 47d2e5a34536b97f174d337f4b06aa437a1dcf1f Mon Sep 17 00:00:00 2001 From: Tony Theodore Date: Tue, 31 Oct 2017 13:02:37 +0000 Subject: [PATCH] build: Avoid using `echo -e` `echo -e` is a GNU extension, and in particular not available on Darwin. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=103493 [smcv: Added commit message] Reviewed-by: Simon McVittie (cherry picked from commit 216ae1adfcf9ce9274019b3c29b8f1245c26dec1) --- tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 250920116..cfce43487 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -123,7 +123,7 @@ SUFFIXES = .rc nodist_dbus_update_activation_environment_SOURCES = disable-uac.rc disable-uac.rc: Win32.Manifest - echo -e "1 24 \"$<\"" > $@ + echo '1 24 "$<"' > $@ endif EXTRA_DIST = run-with-tmp-session-bus.sh strtoll.c strtoull.c Win32.Manifest -- 2.47.3