This file is indexed.

/usr/share/doc/polyorb-doc/examples/corba/secure_echo/local.gpr is in polyorb-doc 2.11~20140418-3.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
with "polyorb", "polyorb_test_common";

project local is

   Dir := external ("Test_Dir");
   Obj_Dir := PolyORB_Test_Common.Build_Dir & Dir;
   for Object_Dir use Obj_Dir;
   for Source_Dirs use (Obj_Dir, PolyORB_Test_Common.Source_Dir & Dir);

   package Compiler is

      for Default_Switches ("Ada")
         use PolyORB_Test_Common.Compiler'Default_Switches ("Ada");

   end Compiler;

   for Main use ("client.adb", "server.adb");

end local;