I think you are right. There can be no sharing of the spine of the list because all the tails are different. Therefore the list of prefixes, if fully evaluated, would take the full Θ(n2) space, which must take Ω(n2) time to generate.
Note that (a lazier version of) the function you wrote is available in Data.List as inits.
There is a neat optimization you can do though. This equation holds:
map (foldl f z) . inits = scanl f z
And scanl runs in linear time. So if you can phrase the thing you want to do to each prefix as a left fold, then you can avoid the quadratic complexity of building the list of prefixes.