diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-04-05 13:17:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-04-05 13:17:57 +0000 |
commit | a712adef2cf2f02738d1d79ae92c324fb0ec84be (patch) | |
tree | d8b19b20b055a9080b752454de37898989390380 | |
parent | cf4531a089b5930149779a9e0076559e14287506 (diff) | |
download | drakx-a712adef2cf2f02738d1d79ae92c324fb0ec84be.tar drakx-a712adef2cf2f02738d1d79ae92c324fb0ec84be.tar.gz drakx-a712adef2cf2f02738d1d79ae92c324fb0ec84be.tar.bz2 drakx-a712adef2cf2f02738d1d79ae92c324fb0ec84be.tar.xz drakx-a712adef2cf2f02738d1d79ae92c324fb0ec84be.zip |
Xtest is not in c:: anymore, it is in xf86misc::main::
-rwxr-xr-x | move/tree/wait4x | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/move/tree/wait4x b/move/tree/wait4x index 40655e94c..a3158f1bd 100755 --- a/move/tree/wait4x +++ b/move/tree/wait4x @@ -2,7 +2,7 @@ use MDK::Common; use lib qw(/usr/lib/libDrakX); -use c; +use xf86misc::main; my $nb = 0; $| = 1; @@ -11,7 +11,7 @@ foreach (1..30) { print "."; sleep 1; print("no X server :(\n"), exit 1 if !fuzzy_pidofs(qr/\bX_move\b/); - $nb++ if c::Xtest(':0'); + $nb++ if xf86misc::main::Xtest(':0'); if ($nb > 2) { #- one succeeded test is not enough :-( print "found\n"; exit 0; |