Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2005-05-31 13:04:53 +0400
committerRaja R Harinath <harinath@hurrynot.org>2005-05-31 13:04:53 +0400
commit88a49229c57af2f1a37b3e998ff44cc482aa9a1a (patch)
treef9bdb6cd44b6e06afa278520ae3c821483c96823 /docbrowser
parentb6bfde8148c9b0c4b7f0fe90f9d7f1e37a83857d (diff)
* monodoc.in: Emit warnings to stderr.
svn path=/trunk/mono-tools/; revision=45244
Diffstat (limited to 'docbrowser')
-rw-r--r--docbrowser/ChangeLog4
-rw-r--r--docbrowser/monodoc.in16
2 files changed, 12 insertions, 8 deletions
diff --git a/docbrowser/ChangeLog b/docbrowser/ChangeLog
index 23466701..da4832e4 100644
--- a/docbrowser/ChangeLog
+++ b/docbrowser/ChangeLog
@@ -1,3 +1,7 @@
+2005-05-31 Raja R Harinath <rharinath@novell.com>
+
+ * monodoc.in: Emit warnings to stderr.
+
2005-05-25 Ben Maurer <bmaurer@ximian.com>
* monodoc.desktop.in: Desktop file
diff --git a/docbrowser/monodoc.in b/docbrowser/monodoc.in
index dea57617..57d23078 100644
--- a/docbrowser/monodoc.in
+++ b/docbrowser/monodoc.in
@@ -1,4 +1,4 @@
-#!/bin/sh
+#! /bin/sh
prefix=@prefix@
exec_prefix=@exec_prefix@
@@ -7,32 +7,32 @@ monodocdir=@monodocdir@
case x$1 in
x--assemble)
shift;
- echo "--assemble is depreciated. Use mdassembler."
+ echo "--assemble is depreciated. Use mdassembler." 1>&2
exec mdassembler "$@"
;;
x--get-sourcesdir)
- echo "--get-sourcesdir is depreciated. Use pkg-config monodoc --variable=sourcesdir."
+ echo "--get-sourcesdir is depreciated. Use pkg-config monodoc --variable=sourcesdir." 1>&2
pkg-config monodoc --variable=sourcesdir
exit 0
;;
x--normalize)
shift;
- echo "--assemble is depreciated. Use mdassembler."
+ echo "--assemble is depreciated. Use mdassembler." 1>&2
exec mdassembler "$@"
;;
x--update)
- echo '--update deprecated; Please use "monodocer" instead.'
+ echo '--update deprecated; Please use "monodocer" instead.' 1>&2
exit 0
;;
x--cs-to-ecma)
shift;
- echo "--cs-to-ecma is depreciated. Use mdcs2ecma."
+ echo "--cs-to-ecma is depreciated. Use mdcs2ecma." 1>&2
exec mdcs2ecma "$@"
exit 0
;;
x--validate)
shift;
- echo "--cs-to-ecma is depreciated. Use mdvalidater."
+ echo "--cs-to-ecma is depreciated. Use mdvalidater." 1>&2
exec mdvalidater "$@"
;;
x--help)
@@ -54,4 +54,4 @@ case x$1 in
;;
esac
-exec @RUNTIME@ $monodocdir/browser.exe $OPTIONS "$@" $REST \ No newline at end of file
+exec @RUNTIME@ $monodocdir/browser.exe $OPTIONS "$@" $REST