problems compiling matplotlib

I compiled matplotlib fine. But when importing it, I got this

    > message:

..snip..
    > import matplotlib
    >>>> matplotlib.use('Agg') import matplotlib.matlab as Mat
    > LazyValue::init_type Value::init_type BinOp::init_type
    > Point::init_type Interval::init_type Bbox::init_type

You have compiled matplotlib with VERBOSE set to True in setup.py.

Set VERBOSE=False and

rm -rf build

and recompile. Should work...

JDH