Skip to content
Snippets Groups Projects

Adding support for a custom target dir while building, fixing a few issues...

Merged Ezekiel Dohmen requested to merge ezekiel.dohmen/advligorts:unit_test_fixes into master
1 unresolved thread

Adding support for a custom target dir while building, fixing a few issues where the SITE.ipc folder/file was not created for a fresh build. Also adding check to the run script that tries to detect if we are doing a first build, and compensate for the first failure.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
335 my $iFile = $::target;
336 $iFile .= "/chans/ipc/";
337 $iFile .= $::ifo;
338 $iFile .= "\.ipc";
335 my $iFile = $::target;
336 $iFile .= "/chans/ipc/";
337 if ( !-d $iFile ) {
338 make_path $iFile or die "***ERROR: Could not create the $iFile directory for the IPCx parameter file\n";
339 }
340 $iFile .= $::ifo;
341 $iFile .= "\.ipc";
342
343
344 #Create the file if it doesn't exist
345 if( !-e $iFile) {
346 open my $fc, ">", $iFile or "***ERROR: Could not create the empty IPCx parameter file $iFile\n";
  • Ezekiel Dohmen added 1 commit

    added 1 commit

    Compare with previous version

  • merged

  • Erik von Reis mentioned in commit 7b202c2e

    mentioned in commit 7b202c2e

  • Please register or sign in to reply
    Loading