summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Quinson <mquinson@debian.org>2004-06-01 17:24:10 +0000
committerMartin Quinson <mquinson@debian.org>2004-06-01 17:24:10 +0000
commitbf93910f606db16fdaa9c59fdbdeae20c80a58b9 (patch)
tree190fbef97ac664b5d267daee342991474703d7b1
parentc7d2c8fd96503b8a357b7550f93428071e37b055 (diff)
downloadquilt-bf93910f606db16fdaa9c59fdbdeae20c80a58b9.tar.gz
document common options to all scripts (--trace and --quiltrc)
-rw-r--r--bin/quilt.in23
-rw-r--r--po/quilt.pot17
-rw-r--r--quilt.changes6
3 files changed, 32 insertions, 14 deletions
diff --git a/bin/quilt.in b/bin/quilt.in
index 3dcd5a3..858ae88 100644
--- a/bin/quilt.in
+++ b/bin/quilt.in
@@ -12,23 +12,22 @@ export QUILTRC=$HOME/.quiltrc
usage()
{
- echo $"Usage: quilt command [-h] ..."
- #echo $"Commands are:" $(
- # local command
- # for command in @QUILT@/*
- # do
- # if [ -f "$command" -a -x "$command" ]
- # then
- # echo "${command#@QUILT@/}"
- # fi
- # done \
- # | sort
- #)
+ echo $"Usage: quilt [--trace] [--quiltrc=XX] command [-h] ..."
+
echo $"Commands are:"
quilt_commands \
| sort \
| column | column -t \
| sed -e $'s/^/\t/'
+ echo $"
+Common options to all commands:
+
+--trace
+ Runs the command in bash trace mode (-x). For internal debugging.
+
+--quiltrc file
+ Use the specified configuration file instead of ~/.quiltrc.
+ See pdf documentation for details about its possible content."
exit 1
}
diff --git a/po/quilt.pot b/po/quilt.pot
index 7fc6705..d806a5d 100644
--- a/po/quilt.pot
+++ b/po/quilt.pot
@@ -1,11 +1,24 @@
#: ../bin/quilt.in:15
-msgid "Usage: quilt command [-h] ..."
+msgid "Usage: quilt [--trace] [--quiltrc=XX] command [-h] ..."
msgstr ""
-#: ../bin/quilt.in:27
+#: ../bin/quilt.in:17
msgid "Commands are:"
msgstr ""
+#: ../bin/quilt.in:22
+msgid ""
+"\n"
+"Common options to all commands:\n"
+"\n"
+"--trace\n"
+"\tRuns the command in bash trace mode (-x). For internal debugging.\n"
+"\t\n"
+"--quiltrc file\n"
+"\tUse the specified configuration file instead of ~/.quiltrc. \n"
+"\tSee pdf documentation for details about its possible content."
+msgstr ""
+
#: ../quilt/add.in:22
msgid "Usage: quilt add [-p patch] {file} ..."
msgstr ""
diff --git a/quilt.changes b/quilt.changes
index e0eef1b..e0f09c9 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue Jun 1 10:23:01 PDT 2004 - mquinson@tuxfamily.org
+
+- document common options to all scripts (--trace and --quiltrc)
+- update french translation
+
+-------------------------------------------------------------------
Mon May 31 05:03:30 CEST 2004 - agruen@suse.de
- Rewrite spec2series to return what the new `quilt setup' needs,