Add a Makefile target to patch automake so it produces the same silent output as...
authorZoltan Varga <vargaz@gmail.com>
Fri, 19 Oct 2012 16:12:16 +0000 (18:12 +0200)
committerZoltan Varga <vargaz@gmail.com>
Fri, 19 Oct 2012 16:12:16 +0000 (18:12 +0200)
mono/mini/Makefile.am

index 5faaa5137258293a993ac9a8b35b38f1c929f635..00c40562cd3f50115266d7be35f4cfa03006c0ae 100644 (file)
@@ -752,5 +752,9 @@ patch-libtool:
        sed -e 's,if (for obj in $$oldobjs,if (for obj in "",g' < ../../libtool > 2; mv 2 ../../libtool
        chmod a+x ../../libtool
 
+# Utility target to patch automake to generate the same format silent output as the old mono silent build did
+patch-automake:
+       src="@echo \"  '. \$$name . ' ' x (8 - length (\$$name)) . '\""; dst="@echo \"'. \$$name . ' ' x (7 - length (\$$name)) .'\""; sed -e "s/$$src/$$dst/g" < $$EXE > 2 && cp 2 $$EXE && rm -f 2
+
 tags:
        etags -o TAGS `find .. -name "*.h" -o -name "*.c"`