Fix GetLibs.vbs registration of the tar and gzip components.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@72 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
48679c1190
commit
efd43d1131
|
@ -117,17 +117,10 @@ Sub GetTarGZObjects(DestFolder)
|
|||
Wget "http://www.sofaswitch.org/mikej/XGZip.dll", DestFolder
|
||||
End If
|
||||
|
||||
Set oExec = WshShell.Exec("regsvr32 /s " & DestFolder & "XTar.dll")
|
||||
WshShell.Run "regsvr32 /s " & DestFolder & "XTar.dll", 6, True
|
||||
|
||||
Do While oExec.Status = 0
|
||||
WScript.Sleep 100
|
||||
Loop
|
||||
WshShell.Run "regsvr32 /s " & DestFolder & "XGZip.dll", 6, True
|
||||
|
||||
Set oExec = WshShell.Exec("regsvr32 /s " & DestFolder & "XGZip.dll")
|
||||
|
||||
Do While oExec.Status = 0
|
||||
WScript.Sleep 100
|
||||
Loop
|
||||
End Sub
|
||||
|
||||
Sub UnTarGZ(TGZfile, DestFolder)
|
||||
|
|
Loading…
Reference in New Issue