Select the types of activity you want to include in your feed.
Interpret . in runtime-launch-info
The runtime-launch-info file includes the location of the binary directory. The compiler is extended so that . refers to the directory of the compiler binary.
···340340 let bindir_start = String.index buffer '\n' + 1 in
341341 let bindir_end = String.index_from buffer bindir_start '\000' in
342342 let bindir = String.sub buffer bindir_start (bindir_end - bindir_start) in
343343+ let bindir =
344344+ if bindir = Filename.current_dir_name then
345345+ Filename.dirname Sys.executable_name
346346+ else
347347+ bindir in
343348 let executable_offset = bindir_end + 2 in
344349 let launcher =
345350 let kind = String.sub buffer 0 (bindir_start - 1) in