
Conflicts: lib/spack/spack/cmd/create.py lib/spack/spack/cmd/extensions.py lib/spack/spack/cmd/fetch.py lib/spack/spack/cmd/uninstall.py lib/spack/spack/config.py lib/spack/spack/database.py lib/spack/spack/directory_layout.py lib/spack/spack/packages.py lib/spack/spack/spec.py
32 lines
898 B
Diff
32 lines
898 B
Diff
This patch addresses <https://github.com/open-mpi/ompi/issues/576>.
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -301130,10 +301130,11 @@
|
|
case ${prev}${p} in
|
|
|
|
-L* | -R* | -l*)
|
|
- # Some compilers place space between "-{L,R}" and the path.
|
|
+ # Some compilers place space between "-{L,R,l}" and the path.
|
|
# Remove the space.
|
|
if test $p = "-L" ||
|
|
- test $p = "-R"; then
|
|
+ test $p = "-R" ||
|
|
+ test $p = "-l"; then
|
|
prev=$p
|
|
continue
|
|
fi
|
|
@@ -303036,10 +303037,11 @@
|
|
case ${prev}${p} in
|
|
|
|
-L* | -R* | -l*)
|
|
- # Some compilers place space between "-{L,R}" and the path.
|
|
+ # Some compilers place space between "-{L,R,l}" and the path.
|
|
# Remove the space.
|
|
if test $p = "-L" ||
|
|
- test $p = "-R"; then
|
|
+ test $p = "-R" ||
|
|
+ test $p = "-l"; then
|
|
prev=$p
|
|
continue
|
|
fi
|