diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-03-20 14:18:08 +0100 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-03-20 14:26:41 +0100 |
commit | 9fb77f16e72fba1f2894baeb617d60caf5330317 (patch) | |
tree | 27ef15c7f9fd8341c5f7c9cd968c50040b700f6a | |
parent | dev-libs/libclc: Add 18.1.2 (diff) | |
download | gentoo-9fb77f16e72fba1f2894baeb617d60caf5330317.tar.gz gentoo-9fb77f16e72fba1f2894baeb617d60caf5330317.tar.bz2 gentoo-9fb77f16e72fba1f2894baeb617d60caf5330317.zip |
x11-misc/tabbed: Add omitted CFLAGS and LDFLAGS
Closes: https://bugs.gentoo.org/927321
Closes: https://bugs.gentoo.org/927322
Fixes: a2766183f887 ("x11-misc/tabbed: add 0.8")
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
-rw-r--r-- | x11-misc/tabbed/tabbed-0.8-r1.ebuild (renamed from x11-misc/tabbed/tabbed-0.8.ebuild) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-misc/tabbed/tabbed-0.8.ebuild b/x11-misc/tabbed/tabbed-0.8-r1.ebuild index 176292a2374e..1b3e660636fb 100644 --- a/x11-misc/tabbed/tabbed-0.8.ebuild +++ b/x11-misc/tabbed/tabbed-0.8-r1.ebuild @@ -34,8 +34,8 @@ src_compile() { tc-export CC PKG_CONFIG local emakeargs=( - TABBED_CFLAGS="$("${PKG_CONFIG}" --cflags x11 xft)" - TABBED_LDFLAGS="$("${PKG_CONFIG}" --libs x11 xft)" + TABBED_CFLAGS="${CFLAGS} $("${PKG_CONFIG}" --cflags x11 xft)" + TABBED_LDFLAGS="${LDFLAGS} $("${PKG_CONFIG}" --libs x11 xft)" ) emake "${emakeargs[@]}" |