diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-04-25 21:34:06 +1100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-04-25 21:34:06 +1100 |
commit | 0fdec65505aefdc42949223b8fea1aea03334b3a (patch) | |
tree | 1320bb2b46dbda63bc7221bbd5ad3cb957f74f04 /sci-visualization | |
parent | sci-visualization/spyview: remove call of unknown macro USER_DIRS (diff) | |
download | gentoo-0fdec65505aefdc42949223b8fea1aea03334b3a.tar.gz gentoo-0fdec65505aefdc42949223b8fea1aea03334b3a.tar.bz2 gentoo-0fdec65505aefdc42949223b8fea1aea03334b3a.zip |
sci-visualization/gr: Pass full path to libagg.so
Bug: https://bugs.gentoo.org/905946
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/gr/gr-0.73.3.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sci-visualization/gr/gr-0.73.3.ebuild b/sci-visualization/gr/gr-0.73.3.ebuild index 07d5cc654cae..8e55d4f9c9ba 100644 --- a/sci-visualization/gr/gr-0.73.3.ebuild +++ b/sci-visualization/gr/gr-0.73.3.ebuild @@ -43,7 +43,7 @@ REQUIRED_USE="cairo? ( truetype )" src_configure() { if use agg ; then - mycmakeargs+=( -DAGG_LIBRARY=libagg.so -DAGG_INCLUDE_DIR=/usr/include/agg2 ) + mycmakeargs+=( -DAGG_LIBRARY=/usr/$(get_libdir)/libagg.so -DAGG_INCLUDE_DIR=/usr/include/agg2 ) else mycmakeargs+=( -DAGG_LIBRARY= ) fi |