From: clinton_admin Date: Mon, 31 Jan 2011 19:00:03 +0000 (-0500) Subject: Force use of actual echo instead of shell builtin X-Git-Tag: release_2011-03-19~2 X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/commitdiff_plain/883dd79c5d791f7b3d961917f8f2c3b58a1195ea?hp=03f5c1498319745508dd68b6243be9fe1d697a5b Force use of actual echo instead of shell builtin * The default echo builtin used by make doesn't support -e any more! --- diff --git a/Makefile b/Makefile index c1fb6d3..2d0c6ab 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ COMMON_DEPS := configDefault/config.sig configDefault/configDefault.sml \ EMACS_DIR := /usr/local/share/emacs/site-lisp/domtool-mode config.sml: - echo -e 'structure Config :> CONFIG = struct\nopen ConfigDefault\nend' > $@ + /bin/echo -e 'structure Config :> CONFIG = struct\nopen ConfigDefault\nend' > $@ .PHONY: all mlton smlnj install install_sos