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:
George Hartzell 2019-04-22 11:16:57 -07:00 committed by Massimiliano Culpo
parent 552c9c57fd
commit efe62b7d6d

View file

@ -29,4 +29,4 @@ def build(self, spec, prefix):
def install(self, spec, prefix):
with working_dir('squashfs-tools'):
make('install', 'INSTALL_DIR=%s' % prefix, parallel=False)
make('install', 'INSTALL_DIR=%s' % prefix.bin, parallel=False)