Commit 40e3a29
authored
Fix lapack dependency guard in install.sh in hipblaslt (#6148)
## Motivation
install.sh -d command prints an error message saying
```Requirement already satisfied: wheel in /usr/lib/python3/dist-packages (0.37.1)
./install.sh: line 713: [: missing `]'
./install.sh: line 713: blis: command not found
~/gh/rocm-libraries/projects/hipblaslt ~/gh/rocm-libraries/projects/hipblaslt
```
## Technical Details
correct fix is to replace [ with [[
## Test Plan
run 'install.sh -d' after the change
## Test Result
error message is gone.
## Submission Checklist
- [ ] Look over the contributing guidelines at
https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.1 parent ad0d9d2 commit 40e3a29
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
710 | 710 | | |
711 | 711 | | |
712 | 712 | | |
713 | | - | |
| 713 | + | |
714 | 714 | | |
715 | 715 | | |
716 | 716 | | |
| |||
0 commit comments