From: Tony Theodore Date: Tue, 31 Oct 2017 13:02:37 +0000 (+0000) Subject: build: Avoid using `echo -e` X-Git-Tag: dbus-1.13.0~129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=216ae1adfcf9ce9274019b3c29b8f1245c26dec1;p=thirdparty%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 --- 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