diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-25 05:13:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-25 05:13:00 +0000 |
commit | c32f8800770cae260d7a608231f850a375d14606 (patch) | |
tree | 7fa27a179259487a91f319702e422f4c88f553f3 | |
parent | Stable on x86 (#122262). (diff) | |
download | historical-c32f8800770cae260d7a608231f850a375d14606.tar.gz historical-c32f8800770cae260d7a608231f850a375d14606.tar.bz2 historical-c32f8800770cae260d7a608231f850a375d14606.zip |
teach people how to quote variables
-rw-r--r-- | skel.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/skel.ebuild b/skel.ebuild index 497f3a5d1094..5802d888127c 100644 --- a/skel.ebuild +++ b/skel.ebuild @@ -75,7 +75,7 @@ KEYWORDS="~x86" # with the exception of any ARCH specific flags, i.e. "ppc", "sparc", # "x86" and "alpha". This is a required variable. If the ebuild doesn't # use any USE flags, set to "". -IUSE="X gnome" +IUSE="gnome X" # A space delimited list of portage features to restrict. man 5 ebuild # for details. Usually not needed. @@ -134,7 +134,7 @@ src_install() { # anything outside of DESTDIR; do this by reading and # understanding the install part of the Makefiles. # This is the preferred way to install. - emake DESTDIR=${D} install || die "emake install failed" + emake DESTDIR="${D}" install || die "emake install failed" # When you hit a failure with emake, do not just use make. It is # better to fix the Makefiles to allow proper parallelization. @@ -146,10 +146,10 @@ src_install() { # passed to ./configure as absolute paths (overriding the prefix # setting). #emake \ - # prefix=${D}/usr \ - # mandir=${D}/usr/share/man \ - # infodir=${D}/usr/share/info \ - # libdir=${D}/usr/$(get_libdir) \ + # prefix="${D}"/usr \ + # mandir="${D}"/usr/share/man \ + # infodir="${D}"/usr/share/info \ + # libdir="${D}"/usr/$(get_libdir) \ # install || die "emake install failed" # Again, verify the Makefiles! We don't want anything falling # outside of ${D}. |