* scripts/mono-service.in: Undo 2008-05-08. '2>&1' is not a bash-ism.
authorRaja R Harinath <harinath@hurrynot.org>
Mon, 12 May 2008 05:03:35 +0000 (05:03 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Mon, 12 May 2008 05:03:35 +0000 (05:03 -0000)
FWIW, it's in Unix V7 sh -- it's even used as an example in sh(1).

svn path=/trunk/mono/; revision=102980

ChangeLog
scripts/mono-service.in

index 8a0a10ccf67543c4c370c4a7d4356bcba66d36bf..5d7788b7f24e0c0a047eba941392f5105cb46251 100644 (file)
--- a/ChangeLog
+++ b/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>
 
        * Makefile.am (get-monolite-latest): Create mcs/lib if not existing.
index 45f401d68fc0bc38e184670ad1d472005d1ffd71..f86087ec9c8c3e7425181222610fd173474c18fd 100644 (file)
@@ -37,5 +37,5 @@ export MONO_DISABLE_SHM=1
 if $debug; then
    exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/mono-service.exe $args
 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