diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-09 22:21:14 +0300 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-14 07:30:06 +0200 |
commit | d22771ab30903e3c9e4cc910595efc0502d0c06a (patch) | |
tree | 6d033a02e7bd9f2cb9ab8e2350b1e8d7b444d433 /eclass/java-utils-2.eclass | |
parent | cuda.eclass: fix Unquoted Variable (diff) | |
download | gentoo-d22771ab30903e3c9e4cc910595efc0502d0c06a.tar.gz gentoo-d22771ab30903e3c9e4cc910595efc0502d0c06a.tar.bz2 gentoo-d22771ab30903e3c9e4cc910595efc0502d0c06a.zip |
java-utils-2.eclass: fix Unquoted Variable
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/java-utils-2.eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 463d364caee9..ee5d68c8a78c 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -577,7 +577,7 @@ java-pkg_regso() { java-pkg_append_ JAVA_PKG_LIBRARY "/${target_dir#${D}}" # Check the path of the lib relative to ${D} elif [[ -e "${D}${lib}" ]]; then - target_dir="$(java-pkg_expand_dir_ ${D}${lib})" + target_dir="$(java-pkg_expand_dir_ "${D}${lib}")" java-pkg_append_ JAVA_PKG_LIBRARY "${target_dir}" else die "${lib} does not exist" @@ -924,7 +924,7 @@ java-pkg_recordjavadoc() debug-print-function ${FUNCNAME} $* # the find statement is important # as some packages include multiple trees of javadoc - JAVADOC_PATH="$(find ${D}/usr/share/doc/ -name allclasses-frame.html -printf '%h:')" + JAVADOC_PATH="$(find "${D}"/usr/share/doc/ -name allclasses-frame.html -printf '%h:')" # remove $D - TODO: check this is ok with all cases of the above JAVADOC_PATH="${JAVADOC_PATH//${D}}" if [[ -n "${JAVADOC_PATH}" ]] ; then |