Skip to content

Commit

Permalink
* scripts/mono-service.in: Undo 2008-05-08. '2>&1' is not a bash-ism.
Browse files Browse the repository at this point in the history
FWIW, it's in Unix V7 sh -- it's even used as an example in sh(1).

svn path=/trunk/mono/; revision=102980
  • Loading branch information
harinath committed May 12, 2008
1 parent 809071b commit 5b554a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2008-05-12 Raja R Harinath <harinath@hurrynot.org>

* scripts/mono-service.in: Undo 2008-05-08. '2>&1' is not a bash-ism.

2008-05-09 Zoltan Varga <zovarga@debian.chello.hu> 2008-05-09 Zoltan Varga <zovarga@debian.chello.hu>


* Makefile.am (get-monolite-latest): Create mcs/lib if not existing. * Makefile.am (get-monolite-latest): Create mcs/lib if not existing.
Expand Down
2 changes: 1 addition & 1 deletion scripts/mono-service.in
Expand Up @@ -37,5 +37,5 @@ export MONO_DISABLE_SHM=1
if $debug; then if $debug; then
exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/mono-service.exe $args exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/mono-service.exe $args
else else
exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/mono-service.exe $args </dev/null 2> /dev/null 1> /dev/null & exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/mono-service.exe $args </dev/null >/dev/null 2>&1 &
fi fi

0 comments on commit 5b554a0

Please sign in to comment.