- 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
This commit is contained in:
Alberto Villa 2011-03-27 17:43:17 +00:00
parent 9e6d7535e3
commit 6cec89d548
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=271904
4 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
PORTNAME= kdebase-workspace
PORTVERSION= ${KDE4_VERSION}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= x11 kde
MASTER_SITES= ${MASTER_SITE_KDE_kde} \
${MASTER_SITE_LOCAL} \

View File

@ -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

View File

@ -8,7 +8,7 @@
PORTNAME= kdebase-workspace
PORTVERSION= ${KDE4_VERSION}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= x11 kde
MASTER_SITES= ${MASTER_SITE_KDE_kde} \
${MASTER_SITE_LOCAL} \

View File

@ -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