From f8b49c805a0cb6222af6acb0a28f8e44fad4831b Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Tue, 22 Feb 2011 16:25:33 +0100 Subject: [PATCH] -e is needed for bash's echo (and probably others as well) --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 07636fe..6c6be6f 100644 --- a/Makefile +++ b/Makefile @@ -27,14 +27,14 @@ PLUF_PATH=$(shell php -r "require_once('src/IDF/conf/path.php'); echo PLUF_PATH; all help: @echo "Rules for generate tarball :" @for b in `git branch | sed "s/^. //g"`; do \ - echo "\t"$$b"_tarball - Generate a zip archive of the "$$b" branch."; \ + echo -e "\t"$$b"_tarball - Generate a zip archive of the "$$b" branch."; \ done - @echo "\nRules for internationnalization :"; - @echo "\tpot-update - Update the POT file from HTML template and PHP source, then merge it with PO file" - @echo "\tpot-push - Send the POT file on transifex server" - @echo "\tpo-update - Merge POT file into PO file. POT is not regenerated." - @echo "\tpo-push - Send the all PO file on transifex server" - @echo "\tpo-pull - Get all PO file from transifex server" + @echo -e "\nRules for internationnalization :"; + @echo -e "\tpot-update - Update the POT file from HTML template and PHP source, then merge it with PO file" + @echo -e "\tpot-push - Send the POT file on transifex server" + @echo -e "\tpo-update - Merge POT file into PO file. POT is not regenerated." + @echo -e "\tpo-push - Send the all PO file on transifex server" + @echo -e "\tpo-pull - Get all PO file from transifex server" # # Internationnalization rule, POT & PO file manipulation