diff options
author | 2009-02-06 14:23:58 +0100 | |
---|---|---|
committer | 2009-02-06 14:23:58 +0100 | |
commit | ac28c6c7317195c57d694cac6b4058ab58758c74 (patch) | |
tree | eefbc3841da425e3b87b43ea05375523f679dbd9 /eclass | |
parent | Merge branch 'master' of ssh://vadimk@repo.or.cz/srv/git/gentoo-lisp-overlay (diff) | |
download | lisp-ac28c6c7317195c57d694cac6b4058ab58758c74.tar.gz lisp-ac28c6c7317195c57d694cac6b4058ab58758c74.tar.bz2 lisp-ac28c6c7317195c57d694cac6b4058ab58758c74.zip |
common-lisp-2.eclass: quote ${D}
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/common-lisp-2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/common-lisp-2.eclass b/eclass/common-lisp-2.eclass index 10042a06..5cdc2401 100644 --- a/eclass/common-lisp-2.eclass +++ b/eclass/common-lisp-2.eclass @@ -68,7 +68,7 @@ common-lisp-install-single-system() { [[ $# != 1 ]] && die "${FUNCNAME[0]} must receive exactly one argument" local file="${CLSOURCEROOT%/}/${CLPACKAGE}/${1}.asd" - [[ -f ${D}/${file} ]] || die "${D}/${file} does not exist" + [[ -f "${D}"/${file} ]] || die "${D}/${file} does not exist" dosym "${file}" "${CLSYSTEMROOT%/}/$(basename ${file})" } |