Fixed regressions.
This commit is contained in:
parent
9e469c37c4
commit
72f0192ddd
2 changed files with 9 additions and 10 deletions
|
@ -691,8 +691,7 @@ def module(self):
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
"""Package implementations override this with their own build configuration."""
|
"""Package implementations override this with their own build configuration."""
|
||||||
configure()
|
tty.die("Packages must provide an install method!")
|
||||||
#tty.die("Packages must provide an install method!")
|
|
||||||
|
|
||||||
|
|
||||||
def do_uninstall(self):
|
def do_uninstall(self):
|
||||||
|
|
|
@ -36,12 +36,12 @@ class Libelf(Package):
|
||||||
versions = { '0.8.13' : '4136d7b4c04df68b686570afa26988ac',
|
versions = { '0.8.13' : '4136d7b4c04df68b686570afa26988ac',
|
||||||
'0.8.12' : 'e21f8273d9f5f6d43a59878dc274fec7', }
|
'0.8.12' : 'e21f8273d9f5f6d43a59878dc274fec7', }
|
||||||
|
|
||||||
# def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
# configure("--prefix=" + prefix,
|
configure("--prefix=" + prefix,
|
||||||
# "--enable-shared",
|
"--enable-shared",
|
||||||
# "--disable-dependency-tracking",
|
"--disable-dependency-tracking",
|
||||||
# "--disable-debug")
|
"--disable-debug")
|
||||||
# make()
|
make()
|
||||||
|
|
||||||
# # The mkdir commands in libelf's install can fail in parallel
|
# The mkdir commands in libelf's install can fail in parallel
|
||||||
# make("install", parallel=False)
|
make("install", parallel=False)
|
||||||
|
|
Loading…
Reference in a new issue