summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2007-03-18 18:27:55 +0000
committerfuzzyray <fuzzyray@gentoo.org>2007-03-18 18:27:55 +0000
commit1e576074d2d49f3b81b6b83e78ec7874a4be48da (patch)
treefaaf069930501b73690c561d12b3cf906e683f6e
parent226a972d19959d6bd02cd055f1ca9f7a8288cef3 (diff)
downloadgentoolkit-1e576074d2d49f3b81b6b83e78ec7874a4be48da.tar.gz
Change --no-color to --nocolor for consistency within gentoolkit. (Bug #165165)
svn path=/; revision=361
-rw-r--r--trunk/ChangeLog4
-rwxr-xr-xtrunk/src/revdep-rebuild/revdep-rebuild4
2 files changed, 6 insertions, 2 deletions
diff --git a/trunk/ChangeLog b/trunk/ChangeLog
index c4e0278..67069d6 100644
--- a/trunk/ChangeLog
+++ b/trunk/ChangeLog
@@ -1,3 +1,7 @@
+2007-03-18 Paul Varner <fuzzyray@gentoo.org>
+ * revdep-rebuild: Change --no-color to --nocolor for consistency
+ within gentoolkit. (Bug #165165)
+
2007-03-16 Paul Varner <fuzzyray@gentoo.org>
* gentoolkit: Fix typo in package.py (Bug #168347)
diff --git a/trunk/src/revdep-rebuild/revdep-rebuild b/trunk/src/revdep-rebuild/revdep-rebuild
index df0e72d..c80df71 100755
--- a/trunk/src/revdep-rebuild/revdep-rebuild
+++ b/trunk/src/revdep-rebuild/revdep-rebuild
@@ -41,7 +41,7 @@ then
echo " --library=NAME NAME can be a full path to the library or a basic"
echo " regular expression (man grep)"
echo " -np, --no-ld-path Do not set LD_LIBRARY_PATH"
- echo " -nc, --no-color Turn off colored output"
+ echo " -nc, --nocolor Turn off colored output"
echo " -i, --ignore Ignore temporary files from previous runs"
echo " -q, --quiet Be less verbose (also passed to emerge command)"
echo " -vv, --extra-verbose Be extra verbose"
@@ -213,7 +213,7 @@ while [ ! -z "$1" ] ; do
PRELIMINARY_CALLED_OPTIONS="${PRELIMINARY_CALLED_OPTIONS} --library=${SONAME}"
shift 2
;;
- -nc | --no-color )
+ -nc | --no-color | --nocolor )
NOCOLOR=true
shift
;;