Преглед на файлове

* Allow .cgi as extension

git-svn-id: trunk@17946 -
michael преди 14 години
родител
ревизия
31df8d516b
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      utils/instantfpc/instantfptools.pas

+ 1 - 1
utils/instantfpc/instantfptools.pas

@@ -49,7 +49,7 @@ begin
   // avoid name clashes
   Ext:=lowercase(ExtractFileExt(Filename));
   if (Ext<>'') and (Ext<>'.pas') and (Ext<>'.pp') and (Ext<>'.p')
-  and (Ext<>'.lpr') and (Ext<>'.txt') and (Ext<>'.sh')
+  and (Ext<>'.lpr') and (Ext<>'.txt') and (Ext<>'.sh') and (Ext<>'.cgi')
   then begin
     writeln('invalid source extension ',Ext);
     Halt(1);