From 1da2df23261d9338a2780822f220c4c652608da4 Mon Sep 17 00:00:00 2001 From: mattias Date: Thu, 27 Jan 2011 16:45:29 +0000 Subject: [PATCH] fcl: clean up git-svn-id: trunk@29214 - --- .gitattributes | 1 - packager/registration/fcl.pas | 21 --------------------- 2 files changed, 22 deletions(-) delete mode 100644 packager/registration/fcl.pas diff --git a/.gitattributes b/.gitattributes index 85c36afe69..72668b4d1c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5528,7 +5528,6 @@ packager/pkgvirtualuniteditor.pas svneol=native#text/pascal packager/registration/Makefile.compiled svneol=native#text/plain packager/registration/README.txt svneol=native#text/plain packager/registration/fcl.lpk svneol=native#text/plain -packager/registration/fcl.pas svneol=native#text/plain packager/registration/fcllaz.pas svneol=native#text/plain packager/registration/lazaruspackageintf.pas svneol=native#text/pascal packager/registration/registerfcl.pas svneol=native#text/pascal diff --git a/packager/registration/fcl.pas b/packager/registration/fcl.pas deleted file mode 100644 index 5c9107cdfb..0000000000 --- a/packager/registration/fcl.pas +++ /dev/null @@ -1,21 +0,0 @@ -{ This file was automatically created by Lazarus. Do not edit! - This source is only used to compile and install the package. - } - -unit FCL; - -interface - -uses - RegisterFCL, db, process, simpleipc, eventlog, xmlcfg, LazarusPackageIntf; - -implementation - -procedure Register; -begin - RegisterUnit('RegisterFCL', @RegisterFCL.Register); -end; - -initialization - RegisterPackage('FCL', @Register); -end.