changeset 2015:185c316a2fea

Use curly braces instead of round ones, since they might not be portable.
author Eugene Paskevich <eugene@raptor.kiev.ua>
date Wed, 10 Oct 2007 20:31:40 +0300
parents 1ad002ce1bd0
children 5d6cf50e905b
files buildsys.mk.in
diffstat 1 files changed, 16 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/buildsys.mk.in	Wed Oct 10 11:11:26 2007 +0300
+++ b/buildsys.mk.in	Wed Oct 10 20:31:40 2007 +0300
@@ -391,21 +391,21 @@
 
 KILL = \e[K
 
-DIR_ENTER = printf "$(KILL)$(CYAN)Entering directory $(BOLD)$$i$(CYAN).$(NORM)\n"; cd $$i || exit 1
-DIR_LEAVE = printf "$(KILL)$(CYAN)Leaving directory $(BOLD)$$i$(CYAN).$(NORM)\n"; cd .. || exit 1
-DEPEND_STATUS = printf "$(KILL)$(BROWN)Generating dependencies...$(NORM)\r"
-DEPEND_OK = printf "$(KILL)$(GREEN)Successfully generated dependencies.$(NORM)\n"
-DEPEND_FAILED = printf "$(KILL)$(RED)Failed to generate dependencies!$(NORM)\n"; exit 1
-COMPILE_STATUS = printf "$(KILL)$(BROWN)Compiling $(BOLD)$<$(BROWN)...$(NORM)\r"
-COMPILE_OK = printf "$(KILL)$(GREEN)Successfully compiled $(BOLD)$<$(GREEN).$(NORM)\n"
-COMPILE_FAILED = printf "$(KILL)$(RED)Failed to compile $(BOLD)$<$(RED)!$(NORM)\n"; exit 1
-LINK_STATUS = printf "$(KILL)$(BROWN)Linking $(BOLD)$@$(BROWN)...$(NORM)\r"
-LINK_OK = printf "$(KILL)$(GREEN)Successfully linked $(BOLD)$@$(GREEN).$(NORM)\n"
-LINK_FAILED = printf "$(KILL)$(RED)Failed to link $(BOLD)$@$(RED)!$(NORM)\n"; exit 1
-INSTALL_STATUS = printf "$(KILL)$(BROWN)Installing $(BOLD)$$i$(BROWN)...$(NORM)\r"
-INSTALL_OK = printf "$(KILL)$(GREEN)Successfully installed $(BOLD)$$i$(GREEN).$(NORM)\n"
-INSTALL_FAILED = printf "$(KILL)$(RED)Failed to install $(BOLD)$$i$(RED)!$(NORM)\n"; exit 1
-DELETE_OK = printf "$(KILL)$(BLUE)Deleted $(BOLD)$$i$(BLUE).$(NORM)\n"
-DELETE_FAILED = printf "$(KILL)$(RED)Failed to delete $(BOLD)$$i$(RED)!$(NORM)\n"; exit 1
+DIR_ENTER = printf "${KILL}${CYAN}Entering directory ${BOLD}$$i${CYAN}.${NORM}\n"; cd $$i || exit 1
+DIR_LEAVE = printf "${KILL}${CYAN}Leaving directory ${BOLD}$$i${CYAN}.${NORM}\n"; cd .. || exit 1
+DEPEND_STATUS = printf "${KILL}${BROWN}Generating dependencies...${NORM}\r"
+DEPEND_OK = printf "${KILL}${GREEN}Successfully generated dependencies.${NORM}\n"
+DEPEND_FAILED = printf "${KILL}${RED}Failed to generate dependencies!${NORM}\n"; exit 1
+COMPILE_STATUS = printf "${KILL}${BROWN}Compiling ${BOLD}$<${BROWN}...${NORM}\r"
+COMPILE_OK = printf "${KILL}${GREEN}Successfully compiled ${BOLD}$<${GREEN}.${NORM}\n"
+COMPILE_FAILED = printf "${KILL}${RED}Failed to compile ${BOLD}$<${RED}!${NORM}\n"; exit 1
+LINK_STATUS = printf "${KILL}${BROWN}Linking ${BOLD}$@${BROWN}...${NORM}\r"
+LINK_OK = printf "${KILL}${GREEN}Successfully linked ${BOLD}$@${GREEN}.${NORM}\n"
+LINK_FAILED = printf "${KILL}${RED}Failed to link ${BOLD}$@${RED}!${NORM}\n"; exit 1
+INSTALL_STATUS = printf "${KILL}${BROWN}Installing ${BOLD}$$i${BROWN}...${NORM}\r"
+INSTALL_OK = printf "${KILL}${GREEN}Successfully installed ${BOLD}$$i${GREEN}.${NORM}\n"
+INSTALL_FAILED = printf "${KILL}${RED}Failed to install ${BOLD}$$i${RED}!${NORM}\n"; exit 1
+DELETE_OK = printf "${KILL}${BLUE}Deleted ${BOLD}$$i${BLUE}.${NORM}\n"
+DELETE_FAILED = printf "${KILL}${RED}Failed to delete ${BOLD}$$i${RED}!${NORM}\n"; exit 1
 
 -include .deps