Skip to content

Commit

Permalink
Correct OpenDDS github URL, corrected version files for ACE/TAO/OpenDDS
Browse files Browse the repository at this point in the history
    * command/printaceconfig.pm:
  • Loading branch information
jwillemsen committed Jun 11, 2024
1 parent 2605cc8 commit c577a38
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions command/printaceconfig.pm
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sub Run ($)
my $root = main::GetVariable ('root');
my $project_root = main::GetVariable ('project_root');
my $config_file = main::GetVariable ('CVS_CONFIG_FILE');
my $opendds_url = 'https://github.com/objectcomputing/OpenDDS';
my $opendds_url = 'https://github.com/OpenDDS/OpenDDS';
my $atcd_url = 'https://github.com/DOCGroup/ACE_TAO';
my $ciao_url = 'https://github.com/DOCGroup/CIAO';
my $dance_url = 'https://github.com/DOCGroup/DAnCE';
Expand Down Expand Up @@ -193,10 +193,10 @@ sub Run ($)
print_file ("$ENV{ACE_ROOT}/include/makeinclude/platform_macros.GNU", 1);
}

if ( -r "$ENV{ACE_ROOT}/VERSION" ) {
if ( -r "$ENV{ACE_ROOT}/VERSION.txt" ) {
print "================ ACE VERSION ================\n";

print_file ("$ENV{ACE_ROOT}/VERSION", 0);
print_file ("$ENV{ACE_ROOT}/VERSION.txt", 0);
}
}

Expand All @@ -206,10 +206,10 @@ sub Run ($)
}
push (@dirs, 'TAO');
foreach my $dir (@dirs) {
if (defined $dir && -r "$dir/VERSION") {
if (defined $dir && -r "$dir/VERSION.txt") {
print "================ TAO VERSION ================\n";

print_file ("$dir/VERSION", 0);
print_file ("$dir/VERSION.txt", 0);
last;
}
}
Expand Down Expand Up @@ -248,10 +248,10 @@ sub Run ($)
}
push (@dirs, 'TAO/DDS');
foreach my $dir (@dirs) {
if (defined $dir && -r "$dir/VERSION") {
if (defined $dir && -r "$dir/VERSION.txt") {
print "================ DDS VERSION ================\n";

print_file ("$dir/VERSION", 0);
print_file ("$dir/VERSION.txt", 0);
last;
}
if (defined $dir && -r "$dir/dds/OpenDDSConfig.h") {
Expand Down

0 comments on commit c577a38

Please sign in to comment.