From d362b39624e4e3586cd2a3dc1c80be148312eaea Mon Sep 17 00:00:00 2001 From: "leaf%mozilla.org" Date: Mon, 6 Dec 1999 00:13:30 +0000 Subject: [PATCH] xcopy gets all interactive when you specify a non-directory destination, and this is hanging the windows build automation. xcopy->copy takes care of this. r=tague git-svn-id: svn://10.0.0.236/trunk@55387 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpinstall/packager/windows/makeall.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/xpinstall/packager/windows/makeall.pl b/mozilla/xpinstall/packager/windows/makeall.pl index 08e1ecfe55e..15ea482deb2 100644 --- a/mozilla/xpinstall/packager/windows/makeall.pl +++ b/mozilla/xpinstall/packager/windows/makeall.pl @@ -90,7 +90,7 @@ system("xcopy /f $inDistPath\\setuprsc.dll $inDistPath\\setup"); # build the self-extracting .exe file. print "\nbuilding self-extracting installer ($seiFileNameSpecific)...\n"; -system("xcopy /F $inDistPath\\$seiFileNameGeneric $inDistPath\\$seiFileNameSpecific"); +system("copy $inDistPath\\$seiFileNameGeneric $inDistPath\\$seiFileNameSpecific"); system("$inDistPath\\nszip.exe $inDistPath\\$seiFileNameSpecific $inDistPath\\setup\\*.* $inDistPath\\xpi\\*.*"); print " done!\n";