From 24192ab23c657d2664ad9232baaea98b0c93821f Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 18 Jun 2009 05:22:10 +0000 Subject: [PATCH] createtest small windows fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3487 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/DSPSpy/util/createtest.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/DSPSpy/util/createtest.pl b/Source/DSPSpy/util/createtest.pl index e4fe919c57..8417b18689 100755 --- a/Source/DSPSpy/util/createtest.pl +++ b/Source/DSPSpy/util/createtest.pl @@ -106,7 +106,7 @@ for(my $i = 0;$i < scalar(@cmdList);$i++) { close(NAMES); if (! $merge) { - system("dsptool -m $name.lst -h $name"); + print `dsptool -m $name.lst -h $name`; open(NAMES, "$name.lst"); my @names = ; chomp @names; @@ -117,7 +117,7 @@ for(my $i = 0;$i < scalar(@cmdList);$i++) { } if ($merge) { - system("dsptool -m all.lst -h unite_test"); + print `dsptool -m all.lst -h unite_test`; open(NAMES, "all.lst"); my @names = ; chomp @names;