summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmorph2
-rwxr-xr-xrun-bootstrap-in-chroot3
-rwxr-xr-xscripts/check-copyright-year3
3 files changed, 5 insertions, 3 deletions
diff --git a/morph b/morph
index c7ee578b..5e37bab6 100755
--- a/morph
+++ b/morph
@@ -55,7 +55,7 @@ class Morph(cliapp.Application):
metavar='DIR',
default=defaults['cachedir'])
self.settings.string(['prefix'],
- 'set the install prefix of built chunks to PREFIX',
+ 'build chunks with prefix PREFIX',
metavar='PREFIX', default=defaults['prefix'])
self.settings.string(['toolchain-target'],
'set the TOOLCHAIN_TARGET variable which is used '
diff --git a/run-bootstrap-in-chroot b/run-bootstrap-in-chroot
index 1ce70790..fcf24ad7 100755
--- a/run-bootstrap-in-chroot
+++ b/run-bootstrap-in-chroot
@@ -138,7 +138,8 @@ deb http://code.liw.fi/debian squeeze main
deb http://roadtrain.codethink.co.uk/debrock/ squeeze main
EOF
./do-squeeze-chroot apt-get update
- ./do-squeeze-chroot apt-get install --allow-unauthenticated tar python-cliapp
+ ./do-squeeze-chroot apt-get install --allow-unauthenticated \
+ tar python-cliapp
if "$snapshot"
then
diff --git a/scripts/check-copyright-year b/scripts/check-copyright-year
index 2fed252e..beaca2ce 100755
--- a/scripts/check-copyright-year
+++ b/scripts/check-copyright-year
@@ -62,7 +62,8 @@ class CheckCopyrightYear(cliapp.Application):
self.all_ok = self.all_ok and ok
def get_git_commit_year(self, filename):
- out = self.runcmd(['git', 'log', '-1', '--format=format:%cd', filename])
+ out = self.runcmd(['git', 'log', '-1', '--format=format:%cd',
+ filename])
words = out.split()
return int(words[4])