diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2008-01-24 04:26:20 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2008-01-24 04:26:20 +0000 |
commit | 91ae0f6ce3a10fa5962da842b3962d33f4357cbb (patch) | |
tree | 42d85fb55cd150b7101b0a742bce7c525d519ddc /archs | |
parent | Add in a common mistake of specifying the full path to a file instead of just... (diff) | |
download | devmanual-91ae0f6ce3a10fa5962da842b3962d33f4357cbb.tar.gz devmanual-91ae0f6ce3a10fa5962da842b3962d33f4357cbb.tar.bz2 devmanual-91ae0f6ce3a10fa5962da842b3962d33f4357cbb.zip |
Quote variables correctly; bug #206645
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/devmanual/trunk@117 176d3534-300d-0410-8db8-84e73ed771c3
Diffstat (limited to 'archs')
-rw-r--r-- | archs/amd64/text.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archs/amd64/text.xml b/archs/amd64/text.xml index 801e0ef..996ded2 100644 --- a/archs/amd64/text.xml +++ b/archs/amd64/text.xml @@ -463,7 +463,7 @@ src_compile() { } src_install() { - emake DESTDIR=${D} install || die + emake DESTDIR="${D}" install || die } </codesample> |