~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/compiler/compiler.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
     DoneParser;
145
145
     DoneImport;
146
146
     DoneExport;
147
 
     DoneDebuginfo;
148
147
     DoneLinker;
149
 
     DoneAssembler;
150
148
     DoneAsm;
151
149
   end;
152
150
{ Free memory for the others }
178
176
{ this is needed here for the IDE
179
177
  in case of compilation failure
180
178
  at the previous compile }
181
 
  current_module:=nil;
 
179
  set_current_module(nil);
182
180
{ read the arguments }
183
181
  read_arguments(cmd);
184
182
{ inits which depend on arguments }
186
184
  InitImport;
187
185
  InitExport;
188
186
  InitLinker;
189
 
  InitAssembler;
190
 
  InitDebugInfo;
191
187
  InitAsm;
192
188
  CompilerInitedAfterArgs:=true;
193
189
end;