Avoid race in pango's make install, set parallel=False

This commit is contained in:
Todd Gamblin 2016-03-08 02:49:11 -08:00
parent 96e1b2d25c
commit 18ce5ccf8f

View File

@ -16,4 +16,4 @@ class Pango(Package):
def install(self, spec, prefix): def install(self, spec, prefix):
configure("--prefix=%s" % prefix) configure("--prefix=%s" % prefix)
make() make()
make("install") make("install", parallel=False)