]> git.pld-linux.org Git - packages/audacious-plugins.git/blob - audacious-plugins-verbose_make.patch
Release 2 (by relup.sh)
[packages/audacious-plugins.git] / audacious-plugins-verbose_make.patch
1 --- audacious-plugins-2.5.0/buildsys.mk.in~     2011-04-16 18:10:09.000000000 +0200
2 +++ audacious-plugins-2.5.0/buildsys.mk.in      2011-05-04 13:15:04.393333839 +0200
3 @@ -93,7 +93,6 @@
4  
5  MO_FILES = ${LOCALES:.po=.mo}
6  
7 -.SILENT:
8  .SUFFIXES:
9  .SUFFIXES: .beam .c .c.dep .cc .cc.dep .cxx .cxx.dep .d .erl .lib.o .mo .m .m.dep .mm .mm.dep .o .plugin.o .po .py .pyc .xpm .S .S.dep
10  .PHONY: all subdirs pre-depend depend install install-extra uninstall uninstall-extra clean distclean locales
11 @@ -714,27 +714,27 @@
12                 fi \
13         done
14  
15 -DIR_ENTER = printf "@TERM_EL@@TERM_SETAF6@Entering directory @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF6@.@TERM_SGR0@\n"; cd $$i || exit $$?
16 -DIR_LEAVE = printf "@TERM_EL@@TERM_SETAF6@Leaving directory @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF6@.@TERM_SGR0@\n"; cd .. || exit $$?
17 -DEPEND_STATUS = printf "@TERM_EL@@TERM_SETAF3@Generating dependencies...@TERM_SGR0@\r"
18 -DEPEND_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully generated dependencies.@TERM_SGR0@\n"
19 -DEPEND_FAILED = err=$$?; printf "@TERM_EL@@TERM_SETAF1@Failed to generate dependencies!@TERM_SGR0@\n"; exit $$err
20 -COMPILE_STATUS = printf "@TERM_EL@@TERM_SETAF3@Compiling @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF3@...@TERM_SGR0@\r"
21 -COMPILE_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully compiled @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF2@.@TERM_SGR0@\n"
22 -COMPILE_FAILED = err=$$?; printf "@TERM_EL@@TERM_SETAF1@Failed to compile @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit $$err
23 -COMPILE_LIB_STATUS = printf "@TERM_EL@@TERM_SETAF3@Compiling @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF3@ (lib)...@TERM_SGR0@\r"
24 -COMPILE_LIB_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully compiled @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF2@ (lib).@TERM_SGR0@\n"
25 -COMPILE_LIB_FAILED = err=$$?; printf "@TERM_EL@@TERM_SETAF1@Failed to compile @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF1@ (lib)!@TERM_SGR0@\n"; exit $$err
26 -COMPILE_PLUGIN_STATUS = printf "@TERM_EL@@TERM_SETAF3@Compiling @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF3@ (plugin)...@TERM_SGR0@\r"
27 -COMPILE_PLUGIN_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully compiled @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF2@ (plugin).@TERM_SGR0@\n"
28 -COMPILE_PLUGIN_FAILED = err=$$?; printf "@TERM_EL@@TERM_SETAF1@Failed to compile @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF1@ (plugin)!@TERM_SGR0@\n"; exit $$err
29 -LINK_STATUS = printf "@TERM_EL@@TERM_SETAF3@Linking @TERM_BOLD@$@@TERM_SGR0@@TERM_SETAF3@...@TERM_SGR0@\r"
30 -LINK_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully linked @TERM_BOLD@$@@TERM_SGR0@@TERM_SETAF2@.@TERM_SGR0@\n"
31 -LINK_FAILED = err=$$?; printf "@TERM_EL@@TERM_SETAF1@Failed to link @TERM_BOLD@$@@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit $$err
32 -INSTALL_STATUS = printf "@TERM_EL@@TERM_SETAF3@Installing @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF3@...@TERM_SGR0@\r"
33 -INSTALL_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully installed @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF2@.@TERM_SGR0@\n"
34 -INSTALL_FAILED = err=$$?; printf "@TERM_EL@@TERM_SETAF1@Failed to install @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit $$err
35 -DELETE_OK = printf "@TERM_EL@@TERM_SETAF4@Deleted @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF4@.@TERM_SGR0@\n"
36 -DELETE_FAILED = err=$$?; printf "@TERM_EL@@TERM_SETAF1@Failed to delete @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit $$err
37 +DIR_ENTER = printf "Entering directory $$i.\n"; cd $$i || exit $$?
38 +DIR_LEAVE = printf "Leaving directory $$i.\n"; cd .. || exit $$?
39 +DEPEND_STATUS = printf "Generating dependencies...\r"
40 +DEPEND_OK = printf "Successfully generated dependencies.\n"
41 +DEPEND_FAILED = err=$$?; printf "Failed to generate dependencies!\n"; exit $$err
42 +COMPILE_STATUS = printf "Compiling $<...\r"
43 +COMPILE_OK = printf "Successfully compiled $<.\n"
44 +COMPILE_FAILED = err=$$?; printf "Failed to compile $<!\n"; exit $$err
45 +COMPILE_LIB_STATUS = printf "Compiling $< (lib)...\r"
46 +COMPILE_LIB_OK = printf "Successfully compiled $< (lib).\n"
47 +COMPILE_LIB_FAILED = err=$$?; printf "Failed to compile $< (lib)!\n"; exit $$err
48 +COMPILE_PLUGIN_STATUS = printf "Compiling $< (plugin)...\r"
49 +COMPILE_PLUGIN_OK = printf "Successfully compiled $< (plugin).\n"
50 +COMPILE_PLUGIN_FAILED = err=$$?; printf "Failed to compile $< (plugin)!\n"; exit $$err
51 +LINK_STATUS = printf "Linking $@...\r"
52 +LINK_OK = printf "Successfully linked $@.\n"
53 +LINK_FAILED = err=$$?; printf "Failed to link $@!\n"; exit $$err
54 +INSTALL_STATUS = printf "Installing $$i...\r"
55 +INSTALL_OK = printf "Successfully installed $$i.\n"
56 +INSTALL_FAILED = err=$$?; printf "Failed to install $$i!\n"; exit $$err
57 +DELETE_OK = printf "Deleted $$i.\n"
58 +DELETE_FAILED = err=$$?; printf "Failed to delete $$i!\n"; exit $$err
59  
60  include .deps
This page took 0.057598 seconds and 3 git commands to generate.