git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@663089 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William Au 2008-06-04 13:16:07 +00:00
parent ef8a49d414
commit 17c90ce718
2 changed files with 3 additions and 1 deletions

View File

@ -421,6 +421,8 @@ Bug Fixes
hl.usePhraseHighligher=true URL param is used.
(Bojan Smid via Otis Gospodnetic)
34. SOLR-590: Limitation in pgrep on Linux platform breaks script-utils fixUser. (Hannes Schmidt via billa)
Other Changes
1. SOLR-135: Moved common classes to org.apache.solr.common and altered the
build scripts to make two jars: apache-solr-1.3.jar and

View File

@ -49,7 +49,7 @@ function fixUser
if [[ "${oldwhoami}" == "" ]]
then
oldwhoami=`ps h -Hfp $(pgrep -g0 ${0##*/}) | tail -1|cut -f1 -d" "`
oldwhoami=`ps h -Hfp $(pgrep -f -g0 $0) | tail -1|cut -f1 -d" "`
fi
}