From efe62b7d6db235eb6fee5d746cf4b6b98a21768f Mon Sep 17 00:00:00 2001 From: George Hartzell Date: Mon, 22 Apr 2019 11:16:57 -0700 Subject: [PATCH] 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. --- var/spack/repos/builtin/packages/squashfs/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/squashfs/package.py b/var/spack/repos/builtin/packages/squashfs/package.py index ae6fc205ae..81e31a704c 100644 --- a/var/spack/repos/builtin/packages/squashfs/package.py +++ b/var/spack/repos/builtin/packages/squashfs/package.py @@ -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)