diff options
author | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2022-05-26 17:33:16 +0200 |
---|---|---|
committer | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2022-05-26 23:20:41 +0200 |
commit | c3c79a8cf0face5a5267b783e280f11df5b77c33 (patch) | |
tree | e8e00da2fd0b7b6054aac28fc4b2b48d7b3a08a7 /sci-libs | |
parent | dev-python/pyclip: Disable tests (diff) | |
download | guru-c3c79a8cf0face5a5267b783e280f11df5b77c33.tar.gz guru-c3c79a8cf0face5a5267b783e280f11df5b77c33.tar.bz2 guru-c3c79a8cf0face5a5267b783e280f11df5b77c33.zip |
sci-libs/magma: use ; as separator
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/magma/magma-2.6.2-r1.ebuild | 4 | ||||
-rw-r--r-- | sci-libs/magma/magma-2.6.2.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sci-libs/magma/magma-2.6.2-r1.ebuild b/sci-libs/magma/magma-2.6.2-r1.ebuild index 431d3ad52..05b6ad90f 100644 --- a/sci-libs/magma/magma-2.6.2-r1.ebuild +++ b/sci-libs/magma/magma-2.6.2-r1.ebuild @@ -96,11 +96,11 @@ src_configure() { #if use hip ; then for u in ${IUSE_AMDGPU} ; do if use ${u} ; then - gpu="${gpu},${u/amdgpu_/}" + gpu="${gpu};${u/amdgpu_/}" fi done #fi - # remove first character (,) + # remove first character (;) gpu="${gpu:1}" local mycmakeargs=( diff --git a/sci-libs/magma/magma-2.6.2.ebuild b/sci-libs/magma/magma-2.6.2.ebuild index 374515069..edaa8a3f3 100644 --- a/sci-libs/magma/magma-2.6.2.ebuild +++ b/sci-libs/magma/magma-2.6.2.ebuild @@ -87,10 +87,10 @@ src_configure() { local gpu="" for u in ${IUSE_AMDGPU} ; do if use ${u} ; then - gpu="${gpu},${u/amdgpu_/}" + gpu="${gpu};${u/amdgpu_/}" fi done - #remove first character (,) + #remove first character (;) gpu="${gpu:1}" local mycmakeargs=( |