From: Michael Jerris Date: Thu, 2 Mar 2006 21:35:53 +0000 (+0000) Subject: fix intermittent lib build error when .tar.gz objects did not release the lock on... X-Git-Tag: v1.0-beta1~3140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aea92cf640488646aa8c1fa748b82d8d39e8cac9;p=thirdparty%2Ffreeswitch.git fix intermittent lib build error when .tar.gz objects did not release the lock on the directory quick enough, causing a permission denied error when trying to rename the directory and the module build to fail git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@736 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/w32/vsnet/GetLibs.vbs b/w32/vsnet/GetLibs.vbs index 13cc7ee2f9..d64bf92323 100644 --- a/w32/vsnet/GetLibs.vbs +++ b/w32/vsnet/GetLibs.vbs @@ -989,6 +989,7 @@ Sub UnTarGZ(TGZfile, DestFolder) Set objTAR = Nothing Set objGZip = Nothing + WScript.Sleep(500) End Sub @@ -998,6 +999,7 @@ Sub UnZip(Zipfile, DestFolder) wscript.echo("Extracting: " & Zipfile) objZip.UnPack Zipfile, DestFolder Set objZip = Nothing + WScript.Sleep(500) End Sub