Skip to content

Commit 8558def

Browse files
committed
opal.pc.in: fix typo; use the write AC_SUBST'ed variable
As reported by @marksantcroos, this substitution in opal.pc was incorrect -- it left @{libdir} in the string (vs. ${libdir}). The fix is simple: use the proper substitution variable in opal.pc (it was never updated to reflect the new/correct name that was created just for the pkg-config files). Fixes #1343.
1 parent 3fbad2e commit 8558def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/tools/wrappers/opal.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ libdir=@libdir@
1414
# (they're pulled in via libopen-pal.so's implicit dependencies), so
1515
# list them in Libs.private.
1616
#
17-
Libs: -L${libdir} @OPAL_WRAPPER_EXTRA_LDFLAGS@ -lopen-pal
17+
Libs: -L${libdir} @OPAL_PKG_CONFIG_LDFLAGS@ -lopen-pal
1818
Libs.private: @OPAL_WRAPPER_EXTRA_LIBS@
1919
#
2020
# It is safe to hard-wire the -I before the EXTRA_INCLUDES because we

0 commit comments

Comments
 (0)