summaryrefslogtreecommitdiff
path: root/packages/fpmake.pp
diff options
context:
space:
mode:
authorpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-08-23 15:55:54 +0000
committerpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-08-23 15:55:54 +0000
commitcd6cbce5b8c9b7a2d45756b9512b08d0169431de (patch)
treea8863968d8db47805f23087f15537ee15a6872b5 /packages/fpmake.pp
parent0b99071e8e93160b04a6f0034a4ec3a3be41613e (diff)
downloadfpc-cd6cbce5b8c9b7a2d45756b9512b08d0169431de.tar.gz
Ensure that fpmake_proc.inc and fpmake_add.inc source files are integrated into source zips for packages and utils
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@42779 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fpmake.pp')
-rw-r--r--packages/fpmake.pp4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/fpmake.pp b/packages/fpmake.pp
index eeb071c410..e75e945591 100644
--- a/packages/fpmake.pp
+++ b/packages/fpmake.pp
@@ -37,6 +37,10 @@ begin
// Create fpc-all package
PBuild:=AddPackage('fpc-all');
PBuild.Version:='3.3.1';
+ { The source files fpmake_proc.inc and fpmake_add.inc
+ need to be added explicitly to be integrated in source zip }
+ PBuild.Sources.AddSrc('fpmake_proc.inc');
+ PBuild.Sources.AddSrc('fpmake_add.inc');
end;
end;