2
0
Эх сурвалжийг харах

* depend on 2.2.1 paszlib and fcl-process

git-svn-id: trunk@10221 -
peter 17 жил өмнө
parent
commit
bc18af52a9

+ 5 - 2
packages/fpmkunit/fpmake.pp

@@ -6,6 +6,7 @@ uses fpmkunit;
 
 
 Var
 Var
   P : TPackage;
   P : TPackage;
+  D : TDependency;
 begin
 begin
   With Installer do
   With Installer do
     begin
     begin
@@ -17,8 +18,10 @@ begin
 {$endif ALLPACKAGES}
 {$endif ALLPACKAGES}
     P.Version:='2.2.1-1';
     P.Version:='2.2.1-1';
     P.Description:='Free Pascal Make Tool';
     P.Description:='Free Pascal Make Tool';
-    P.Dependencies.Add('paszlib');
-    P.Dependencies.Add('fcl-process');
+    D:=P.Dependencies.Add('paszlib');
+      D.Version:='2.2.1-0';
+    D:=P.Dependencies.Add('fcl-process');
+      D.Version:='2.2.1-0';
     P.Targets.AddUnit('src/fpmkunit.pp');
     P.Targets.AddUnit('src/fpmkunit.pp');
 
 
 {$ifndef ALLPACKAGES}
 {$ifndef ALLPACKAGES}