summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2022-12-04 15:15:27 +0100
committerPacho Ramos <pacho@gentoo.org>2022-12-04 15:49:20 +0100
commit09dac3a7ca10c21ca15fdebba244f935445ef745 (patch)
tree6ffe647f51b9c065aceb11c42678a334ed0d285f
parentx11-themes/papirus-icon-theme: add 20221201 (diff)
downloadgentoo-09dac3a7ca10c21ca15fdebba244f935445ef745.tar.gz
gentoo-09dac3a7ca10c21ca15fdebba244f935445ef745.tar.bz2
gentoo-09dac3a7ca10c21ca15fdebba244f935445ef745.zip
sci-libs/hipSPARSE: Replace obsolete egrep call
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
-rw-r--r--sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild b/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild
index 5962bd36caa1..d6354b8d77be 100644
--- a/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild
+++ b/sci-libs/hipSPARSE/hipSPARSE-5.1.3.ebuild
@@ -68,7 +68,7 @@ src_prepare() {
mkdir -p "${BUILD_DIR}"/clients/matrices
# compile and use the mtx2bin converter. Do not use any optimization flags!
edo $(tc-getCXX) deps/convert.cpp -o deps/convert
- find "${WORKDIR}" -maxdepth 2 -regextype egrep -regex ".*/(.*)/\1\.mtx" -print0 |
+ find "${WORKDIR}" -maxdepth 2 -regextype grep -E -regex ".*/(.*)/\1\.mtx" -print0 |
while IFS= read -r -d '' mtxfile; do
destination=${BUILD_DIR}/clients/matrices/$(basename -s '.mtx' ${mtxfile}).bin
ebegin "Converting ${mtxfile} to ${destination}"