diff mbox

[14/17] Clarify Host/Build arch help as it always confuses

Message ID 1323885273-23505-14-git-send-email-wookey@linaro.org
State Accepted
Headers show

Commit Message

Wookey Dec. 14, 2011, 5:54 p.m. UTC
From: Wookey <wookey@wookware.org>

---
 lib/Sbuild/ConfBase.pm |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/lib/Sbuild/ConfBase.pm b/lib/Sbuild/ConfBase.pm
index 41ad4f0..99c2f7e 100644
--- a/lib/Sbuild/ConfBase.pm
+++ b/lib/Sbuild/ConfBase.pm
@@ -148,27 +148,27 @@  sub init_allowed_keys {
 	    HELP => 'Program to use to send mail'
 	},
 	# TODO: Check if defaulted in code assuming undef
-	# ARCH is the native (system) architecture.  Not used for host/build.
+	# ARCH is the native (build-system) architecture.  Not used for host/build.
 	'ARCH'					=> {
 	    TYPE => 'STRING',
 	    VARNAME => 'arch',
 	    GROUP => '__INTERNAL',
 	    DEFAULT => $native_arch,
-	    HELP => 'Build architecture.'
+	    HELP => 'Build architecture (Arch we are building on).'
 	},
 	'HOST_ARCH'				=> {
 	    TYPE => 'STRING',
 	    VARNAME => 'host_arch',
 	    GROUP => 'Build options',
 	    DEFAULT => $native_arch,
-	    HELP => 'Host architecture'
+	    HELP => 'Host architecture (Arch we are building for)'
 	},
 	'BUILD_ARCH'				=> {
 	    TYPE => 'STRING',
 	    VARNAME => 'build_arch',
 	    GROUP => 'Build options',
 	    DEFAULT => $native_arch,
-	    HELP => 'Build architecture.'
+	    HELP => 'Build architecture (Arch we are building on).'
 	},
 	'HOSTNAME'				=> {
 	    TYPE => 'STRING',