aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-07-29 22:58:27 -0400
committerMike Frysinger <vapier@gentoo.org>2012-07-29 22:58:27 -0400
commite1e09a9a671c9c7c55a0e853d4f562472f8332f0 (patch)
treeb741e9d207dea63a54eb00aa3c965ab5154d00cc
parentconfig.site: do not cache values for native builds (diff)
downloadcrossdev-e1e09a9a671c9c7c55a0e853d4f562472f8332f0.tar.gz
crossdev-e1e09a9a671c9c7c55a0e853d4f562472f8332f0.tar.bz2
crossdev-e1e09a9a671c9c7c55a0e853d4f562472f8332f0.zip
crossdev: fix overlay selection documentation
The code picks the first overlay to store its code, not the last. Fix up the documentation to match reality. URL: https://bugs.gentoo.org/428420 Reported-by: W. Trevor King <wking@tremily.us> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rwxr-xr-xcrossdev4
1 files changed, 2 insertions, 2 deletions
diff --git a/crossdev b/crossdev
index 7073ab6..b90cf60 100755
--- a/crossdev
+++ b/crossdev
@@ -62,7 +62,7 @@ Overlay Options:
${GOOD}-oS, --overlays${NORMAL} list Space delimited list of overlays to search
[default: \${PORTDIR_OVERLAY}]
${GOOD}-oO, --ov-output${NORMAL} path Overlay to write crossdev package links
- [default: last from --overlays list]
+ [default: first from --overlays list]
${GOOD}-ob, --ov-binutils${NORMAL} path Overlay for binutils ebuilds [default: search]
${GOOD}-od, --ov-gdb${NORMAL} path Overlay for gdb ebuilds [default: search]
${GOOD}-og, --ov-gcc${NORMAL} path Overlay for gcc ebuilds [default: search]
@@ -295,7 +295,7 @@ setup_portage_vars() {
: ${SEARCH_OVERLAYS:=${PORTDIR_OVERLAY}}
# see if user told us where to write things, otherwise
- # install our stuff to the last overlay in the list
+ # install our stuff to the first overlay in the list
: ${CROSSDEV_OVERLAY:=${SEARCH_OVERLAYS}}
CROSSDEV_OVERLAY=${CROSSDEV_OVERLAY%% *}