From: Daniel Nauck Date: Sat, 26 Jan 2008 19:14:27 +0000 (-0000) Subject: 2008-01-26 Daniel Nauck X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=325a608867824efdbae98b0c95a1bdb2b3a2e348;p=mono.git 2008-01-26 Daniel Nauck * scripts/mono-service.in: fix compability with the dash shell, it doesn't like the use of >& without a file descriptor svn path=/trunk/mono/; revision=94014 --- diff --git a/ChangeLog b/ChangeLog index d53c2ecb981..a06cae445be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-26 Daniel Nauck + + * scripts/mono-service.in: fix compability with the dash shell, + it doesn't like the use of >& without a file descriptor + 2008-01-09 Zoltan Varga * runtime/Makefile.am (mcs-compileall): Remove some whitespace after diff --git a/scripts/mono-service.in b/scripts/mono-service.in index bd66b8722e7..633b2b5bfd8 100644 --- a/scripts/mono-service.in +++ b/scripts/mono-service.in @@ -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 & + exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/mono-service.exe $args /dev/null 2>&1 & fi