summaryrefslogtreecommitdiff
path: root/packages/fpmkunit
diff options
context:
space:
mode:
authorjoost <joost@3ad0048d-3df7-0310-abae-a5850022a9f2>2011-02-18 21:17:55 +0000
committerjoost <joost@3ad0048d-3df7-0310-abae-a5850022a9f2>2011-02-18 21:17:55 +0000
commit51fbb0fdaca8bb4aa1901822667a06693b0036af (patch)
treefd12c13f3b0305b945c7f4f0db7d1130c5aa527d /packages/fpmkunit
parentdf7008bf234ca7044aad18b534e99907657af5ef (diff)
downloadfpc-51fbb0fdaca8bb4aa1901822667a06693b0036af.tar.gz
* Show target when compiling/installing
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@16934 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fpmkunit')
-rw-r--r--packages/fpmkunit/src/fpmkunit.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/fpmkunit/src/fpmkunit.pp b/packages/fpmkunit/src/fpmkunit.pp
index 64485893e8..90c4d0e560 100644
--- a/packages/fpmkunit/src/fpmkunit.pp
+++ b/packages/fpmkunit/src/fpmkunit.pp
@@ -1042,9 +1042,9 @@ ResourceString
SWarnDepUnitNotFound = 'Warning: Dependency on unit %s is not supported for %s';
SWarnTargetDependsOnPackage = 'Warning: Target %s of package %s depends on another package (%s). These kind of dependencies are not processed';
SWarnDependOnOtherPlatformPackage = 'Warning: Package %s depends on package %s which is not available for the %s platform';
- SWarnStartBuildingPackage = 'Start building package %s';
+ SWarnStartBuildingPackage = 'Start building package %s for target %s.';
SWarnBuildingPackagecomplete = '[%3.0f%%] Built target %s';
- SWarnInstallationPackagecomplete = 'Installation package %s succeeded';
+ SWarnInstallationPackagecomplete = 'Installation package %s for target %s succeeded';
SWarnCleanPackagecomplete = 'Clean of package %s completed';
SInfoCompilingPackage = 'Compiling package %s';
@@ -4899,7 +4899,7 @@ begin
For I:=0 to Packages.Count-1 do
begin
P:=Packages.PackageItems[i];
- log(vlWarning,SWarnStartBuildingPackage,[P.Name]);
+ log(vlWarning,SWarnStartBuildingPackage,[P.Name, Defaults.Target]);
If PackageOK(P) then
MaybeCompile(P);
@@ -4923,7 +4923,7 @@ begin
P:=Packages.PackageItems[i];
If PackageOK(P) then
Install(P);
- log(vlWarning, SWarnInstallationPackagecomplete, [P.Name]);
+ log(vlWarning, SWarnInstallationPackagecomplete, [P.Name, Defaults.Target]);
end;
If Assigned(AfterInstall) then
AfterInstall(Self);