Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- fix broken test (#7065)
Signed-off-by: SSE4 <tomskside@gmail.com>
  • Loading branch information
SSE4 committed May 21, 2020
1 parent 841eb07 commit e8a8aa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conans/test/functional/generators/pkg_config_test.py
Expand Up @@ -43,9 +43,9 @@ def package_info(self):
pc_content = load(pc_path)
expected_rpaths = ""
if platform.system() == "Linux":
expected_rpaths = ' -Wl,-rpath="${libdir}" -Wl,-rpath="${libdir3}"'
expected_rpaths = ' -Wl,-rpath="${libdir}" -Wl,-rpath="${libdir2}"'
elif platform.system() == "Darwin":
expected_rpaths = ' -Wl,-rpath,"${libdir}" -Wl,-rpath,"${libdir3}"'
expected_rpaths = ' -Wl,-rpath,"${libdir}" -Wl,-rpath,"${libdir2}"'
expected_content = """libdir=/my_absoulte_path/fake/mylib/lib
libdir2=${prefix}/lib2
includedir=/my_absoulte_path/fake/mylib/include
Expand Down

0 comments on commit e8a8aa2

Please sign in to comment.