Skip to content

Commit 11faab1

Browse files
author
Ralph Castain
committed
The final step of the RFC: convert the <foo>libdir and friends to fit their respective code areas, and equate them all at the top. Note that we can't entirely separate things as the opal_install_dirs framework can't handle separated locations for the various trees. This commit was SVN r31679.
1 parent a8e2d6c commit 11faab1

File tree

170 files changed

+355
-325
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+355
-325
lines changed

Makefile.ompi-rules

+6
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,26 @@
1313
@ sed -e 's/#PACKAGE_NAME#/@PACKAGE_NAME@/g' \
1414
-e 's/#PACKAGE_VERSION#/@PACKAGE_VERSION@/g' \
1515
-e 's/#OMPI_DATE#/@OMPI_RELEASE_DATE@/g' \
16+
-e 's/#OPAL_DATE#/@OMPI_RELEASE_DATE@/g' \
17+
-e 's/#ORTE_DATE#/@OMPI_RELEASE_DATE@/g' \
1618
> $@ < $<
1719

1820
.3in.3:
1921
@ echo " SED $@"
2022
@ sed -e 's/#PACKAGE_NAME#/@PACKAGE_NAME@/g' \
2123
-e 's/#PACKAGE_VERSION#/@PACKAGE_VERSION@/g' \
2224
-e 's/#OMPI_DATE#/@OMPI_RELEASE_DATE@/g' \
25+
-e 's/#OPAL_DATE#/@OMPI_RELEASE_DATE@/g' \
26+
-e 's/#ORTE_DATE#/@OMPI_RELEASE_DATE@/g' \
2327
> $@ < $<
2428

2529
.7in.7:
2630
@ echo " SED $@"
2731
@ sed -e 's/#PACKAGE_NAME#/@PACKAGE_NAME@/g' \
2832
-e 's/#PACKAGE_VERSION#/@PACKAGE_VERSION@/g' \
2933
-e 's/#OMPI_DATE#/@OMPI_RELEASE_DATE@/g' \
34+
-e 's/#OPAL_DATE#/@OMPI_RELEASE_DATE@/g' \
35+
-e 's/#ORTE_DATE#/@OMPI_RELEASE_DATE@/g' \
3036
> $@ < $<
3137

3238
# A little verbosity magic; "make" will show the terse output. "make

autogen.pl

+7-7
Original file line numberDiff line numberDiff line change
@@ -259,17 +259,17 @@ sub mca_process_component {
259259
sub ignored {
260260
my ($dir) = @_;
261261

262-
# If this directory does not have .ompi_ignore, or if it has a
263-
# .ompi_unignore that has my username in it, then add it to the
262+
# If this directory does not have .opal_ignore, or if it has a
263+
# .opal_unignore that has my username in it, then add it to the
264264
# list of components.
265265
my $ignored = 0;
266266

267-
if (-f "$dir/.ompi_ignore") {
267+
if (-f "$dir/.opal_ignore") {
268268
$ignored = 1;
269269
}
270-
if (-f "$dir/.ompi_unignore") {
271-
open(UNIGNORE, "$dir/.ompi_unignore") ||
272-
my_die "Can't open $dir/.ompi_unignore file";
270+
if (-f "$dir/.opal_unignore") {
271+
open(UNIGNORE, "$dir/.opal_unignore") ||
272+
my_die "Can't open $dir/.opal_unignore file";
273273
my $unignore;
274274
$unignore .= $_
275275
while (<UNIGNORE>);
@@ -353,7 +353,7 @@ sub mca_process_framework {
353353

354354
# Check ignore status
355355
if (ignored("$dir/$d")) {
356-
verbose " => Ignored (found .ompi_ignore file)\n";
356+
verbose " => Ignored (found .opal_ignore file)\n";
357357
} else {
358358
mca_process_component($topdir, $project, $framework, $d);
359359
}

0 commit comments

Comments
 (0)