Allow arbitrary Prefix attributes (#4591)
* Allow arbitrary Prefix attributes * Test attribute type as well * Flake8 fixes * Remove __new__ method * Fewer uses of join_path in the docs
This commit is contained in:

committed by
Todd Gamblin

parent
cac4362f64
commit
e5ce7b1639
@@ -68,7 +68,7 @@ def install(self, spec, prefix):
|
||||
make.add_default_arg('ARFLAGS=rcs')
|
||||
|
||||
# Dwarf doesn't provide an install, so we have to do it.
|
||||
mkdirp(prefix.bin, prefix.include, prefix.lib, prefix.man1)
|
||||
mkdirp(prefix.bin, prefix.include, prefix.lib, prefix.man.man1)
|
||||
|
||||
with working_dir('libdwarf'):
|
||||
extra_config_args = []
|
||||
@@ -101,4 +101,4 @@ def install(self, spec, prefix):
|
||||
|
||||
install('dwarfdump', prefix.bin)
|
||||
install('dwarfdump.conf', prefix.lib)
|
||||
install('dwarfdump.1', prefix.man1)
|
||||
install('dwarfdump.1', prefix.man.man1)
|
||||
|
Reference in New Issue
Block a user