* Do not handle packages twice, when they are passed on the command line

git-svn-id: trunk@16463 -
This commit is contained in:
joost 2010-11-28 17:08:39 +00:00
parent 94e9d5ebb8
commit cedede9e81

View File

@ -333,7 +333,10 @@ begin
// It's a command or target.
begin
if HasAction then
ParaPackages.Add(Paramstr(i))
begin
if FirstPass then
ParaPackages.Add(Paramstr(i))
end
else
begin
ParaAction:=Paramstr(i);