Install squashfs exe's into prefix.bin, not prefix (#11246)
The squashfs Makefile's `INSTALL_DIR` args is the path to the `bin` directory, not the top of the install tree. Adjust accordingly.
This commit is contained in:
parent
552c9c57fd
commit
efe62b7d6d
1 changed files with 1 additions and 1 deletions
|
@ -29,4 +29,4 @@ def build(self, spec, prefix):
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
with working_dir('squashfs-tools'):
|
with working_dir('squashfs-tools'):
|
||||||
make('install', 'INSTALL_DIR=%s' % prefix, parallel=False)
|
make('install', 'INSTALL_DIR=%s' % prefix.bin, parallel=False)
|
||||||
|
|
Loading…
Reference in a new issue