diff options
author | Alberto Villa <avilla@FreeBSD.org> | 2011-03-27 17:43:17 +0000 |
---|---|---|
committer | Alberto Villa <avilla@FreeBSD.org> | 2011-03-27 17:43:17 +0000 |
commit | 6cec89d5487d8844da1f530eb9978bc19ca7440f (patch) | |
tree | 9007d6b25b0a15141eac08781e8088ec928c5b7e /x11/kdebase4-workspace/files | |
parent | 9e6d7535e3d4b05f9fb2cd412dff19d5d2280572 (diff) | |
download | ports-6cec89d5487d8844da1f530eb9978bc19ca7440f.tar.gz ports-6cec89d5487d8844da1f530eb9978bc19ca7440f.zip |
- Fix KDM startup on 8.x and 7.x.
This commit removes option -q from a pgrep invocation: it looks like
it was added only recently.
PR: ports/155961 [1]
Submitted by: Antoine Vu-Ngoc <antoine@cleopatre.homeip.net> [1]
Ondrej Majerech <oxyd.oxyd@gmail.com> via mailing list
Notes
Notes:
svn path=/head/; revision=271904
Diffstat (limited to 'x11/kdebase4-workspace/files')
-rw-r--r-- | x11/kdebase4-workspace/files/kdm4.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/kdebase4-workspace/files/kdm4.in b/x11/kdebase4-workspace/files/kdm4.in index 483aacc1d4c2..493263007b9a 100644 --- a/x11/kdebase4-workspace/files/kdm4.in +++ b/x11/kdebase4-workspace/files/kdm4.in @@ -38,7 +38,7 @@ kdm_start() fi ( iter=0 - while ! pgrep -fq "^/usr/libexec/getty " > /dev/null 2>&1; do + while ! pgrep -f "^/usr/libexec/getty " > /dev/null 2>&1; do if [ ${iter} -ge 600 ]; then return 1 fi |