diff options
author | David Seifert <soap@gentoo.org> | 2020-02-08 17:51:06 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-02-08 17:51:06 +0100 |
commit | e0eab17c6c30159810523a3086894c179f2e61c6 (patch) | |
tree | 80808a75e2eab1bd4bda1e96c6b1b57fd9e8fff6 /dev-lang | |
parent | dev-lang/julia: [QA] Fix UnnecessarySlashStrip (diff) | |
download | gentoo-e0eab17c6c30159810523a3086894c179f2e61c6.tar.gz gentoo-e0eab17c6c30159810523a3086894c179f2e61c6.tar.bz2 gentoo-e0eab17c6c30159810523a3086894c179f2e61c6.zip |
dev-lang/mlton: [QA] Fix UnnecessarySlashStrip
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/mlton/mlton-20180207.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-lang/mlton/mlton-20180207.ebuild b/dev-lang/mlton/mlton-20180207.ebuild index b8df540a09ff..c4ff66ee2e6f 100644 --- a/dev-lang/mlton/mlton-20180207.ebuild +++ b/dev-lang/mlton/mlton-20180207.ebuild @@ -46,7 +46,7 @@ mlton_subdir() { } mlton_dir() { - echo "${EPREFIX%/}"/usr/$(mlton_subdir) + echo "${EPREFIX}"/usr/$(mlton_subdir) } mlton_memory_requirement() { @@ -137,7 +137,7 @@ mlton_create_bin_stubs() { for i in ${BIN_STUBS[*]}; do cat <<- EOF >> ${i} #!/bin/bash - exec ${EPREFIX%/}/usr/${SUBDIR}/bin/${i} \$* + exec ${EPREFIX}/usr/${SUBDIR}/bin/${i} \$* EOF chmod a+x ${i} || die done |