From: Tony Theodore Date: Tue, 31 Oct 2017 13:02:37 +0000 (+0000) Subject: build: Avoid using `echo -e` X-Git-Tag: dbus-1.12.2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=47d2e5a34536b97f174d337f4b06aa437a1dcf1f;p=platform%2Fupstream%2Fdbus.git 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) --- diff --git a/tools/Makefile.am b/tools/Makefile.am index 2509201..cfce434 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