summaryrefslogtreecommitdiffstats
path: root/scripts/kde-build
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kde-build')
-rwxr-xr-xscripts/kde-build18
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/kde-build b/scripts/kde-build
index 8790f602..1a092f95 100755
--- a/scripts/kde-build
+++ b/scripts/kde-build
@@ -90,15 +90,15 @@ we_started_kppp="FALSE"
kppp_connect()
{
if [ "$USE_KPPP" = "TRUE" ]; then
- kppp_process=`dcopfind -a kppp-*`
+ kppp_process=`dcoptqfind -a kppp-*`
if [ "$kppp_process" = "" ]; then
#kppp not running
kppp > /dev/null 2>&1 &
sleep $KPPP_LOAD_TIME
- `dcop $(dcopfind -a kppp-*) KpppIface beginConnect`
+ `dcop $(dcoptqfind -a kppp-*) KpppIface beginConnect`
#wait for a while
sleep $KPPP_CONNECT_TIME
- kppp_connected=`dcop $(dcopfind -a kppp-*) KpppIface isConnected`
+ kppp_connected=`dcop $(dcoptqfind -a kppp-*) KpppIface isConnected`
if [ "$kppp_connected" = "true" ]; then
we_started_kppp="TRUE"
echo Connected OK
@@ -107,13 +107,13 @@ if [ "$USE_KPPP" = "TRUE" ]; then
fi
else
- kppp_connected=`dcop $(dcopfind -a kppp-*) KpppIface isConnected`
+ kppp_connected=`dcop $(dcoptqfind -a kppp-*) KpppIface isConnected`
if [ "$kppp_connected" = "false" ]; then
#Start a connection
- `dcop $(dcopfind -a kppp-*) KpppIface beginConnect`
+ `dcop $(dcoptqfind -a kppp-*) KpppIface beginConnect`
#wait for a while
sleep $KPPP_CONNECT_TIME
- kppp_connected=`dcop $(dcopfind -a kppp-*) KpppIface isConnected`
+ kppp_connected=`dcop $(dcoptqfind -a kppp-*) KpppIface isConnected`
if [ "$kppp_connected" = "true" ]; then
we_started_kppp="TRUE"
echo Connected OK
@@ -132,13 +132,13 @@ fi
kppp_disconnect()
{
if [ "$USE_KPPP" = "TRUE" ]; then
- if [ $(dcopfind -a kppp-*) = "" ]; then
+ if [ $(dcoptqfind -a kppp-*) = "" ]; then
#kppp not running
echo Kppp was not running so cannot be disconnected
else
if [ "$we_started_kppp" = "TRUE" ]; then
echo Disconnecting kppp
- `dcop $(dcopfind -a kppp-*) KpppIface disconnect`
+ `dcop $(dcoptqfind -a kppp-*) KpppIface disconnect`
else
echo We didnt connect using kppp so we wont disconnect
fi
@@ -409,7 +409,7 @@ else
modules="$critical_modules"
# This generates in 'modules' a list of the modules which shall be updated.
#
- potential_modules=`find $KDESRCDIR -type d -mindepth 1 \
+ potential_modules=`tqfind $KDESRCDIR -type d -mindepth 1 \
-maxdepth 1 -follow | sed -e "s@.*/?*@@"`
for module in $potential_modules; do
if [ -d $KDESRCDIR/$module/CVS -a -w $KDESRCDIR/$module ] \