diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2006-11-10 20:44:11 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2006-11-10 20:44:11 +0000 |
commit | dfc4e3b607dc439b3762e5ad3e136ec7632607d0 (patch) | |
tree | ed58b87c66867f829950559f88530d7366497bdb /eclass/java-utils-2.eclass | |
parent | amd64 (diff) | |
download | historical-dfc4e3b607dc439b3762e5ad3e136ec7632607d0.tar.gz historical-dfc4e3b607dc439b3762e5ad3e136ec7632607d0.tar.bz2 historical-dfc4e3b607dc439b3762e5ad3e136ec7632607d0.zip |
Silenced warnings when the argument value includes spaces.
Diffstat (limited to 'eclass/java-utils-2.eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 31e1c90f3210..d683bedba229 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -557,7 +557,7 @@ java-pkg_dolauncher() { if [[ "${var:0:2}" == "--" ]]; then local var=${var:2} echo "gjl_${var}=\"${value}\"" >> "${var_tmp}" - local gjl_${var}=${value} + local gjl_${var}="${value}" elif [[ "${var}" == "-into" ]]; then target_dir="${value}" elif [[ "${var}" == "-pre" ]]; then |