Fix for linux 64bit filenames

This commit is contained in:
David Anderson 2005-09-22 05:12:23 +00:00
parent 862ee2029a
commit 41f38424ee

View File

@ -38,7 +38,11 @@ public override void CompressDir(string target, string dir)
c.WaitForExit();
info.Arguments = "zcvf " + target + ".tar.gz " + file_list;
if (m_Cfg.MakeOpts().IndexOf("amd64") != -1)
info.Arguments = "zcvf " + target + "_amd64.tar.gz " + file_list;
else
info.Arguments = "zcvf " + target + ".tar.gz " + file_list;
info.UseShellExecute = false;
Process p = Process.Start(info);