Adding support for a custom target dir while building, fixing a few issues...
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
Activity
assigned to @erik.vonreis
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"; changed this line in version 3 of the diff
mentioned in commit 7b202c2e
Please register or sign in to reply