From f1fedbb246ae90bf30e4342202b11bc3030d9ca7 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sat, 28 Dec 2013 18:39:13 +0100 Subject: graphs: support generating png graphs PDF files can not be easily embedded in other documents (eg. ODT, or HTML). Add support for generating PNG graphs, by setting the GRAPH_OUT=pdf|png on the command line: make GRAPH_OUT=png graph-build graph-depends The default is still to generate PDF graphs. Signed-off-by: "Yann E. MORIN" Cc: Thomas Petazzoni Signed-off-by: Thomas Petazzoni --- support/scripts/graph-build-time | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'support/scripts/graph-build-time') diff --git a/support/scripts/graph-build-time b/support/scripts/graph-build-time index 2216db2b65..00c2349faf 100755 --- a/support/scripts/graph-build-time +++ b/support/scripts/graph-build-time @@ -51,7 +51,6 @@ import matplotlib import numpy -matplotlib.use('PDF') import matplotlib.pyplot as plt import matplotlib.font_manager as fm @@ -264,7 +263,7 @@ parser.add_argument("--alternate-colors", '-c', action="store_true", parser.add_argument("--input", '-i', metavar="OUTPUT", help="Input file (usually $(O)/build/build-time.log)") parser.add_argument("--output", '-o', metavar="OUTPUT", required=True, - help="Output file (PDF extension)") + help="Output file (.pdf or .png extension)") args = parser.parse_args() d = read_data(args.input) -- cgit v1.2.3