diff options
author | Sam James <sam@gentoo.org> | 2024-12-21 01:01:55 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-12-21 01:02:27 +0000 |
commit | 318cef1e679d0546067b91e95f9af4c1b4f4e411 (patch) | |
tree | 427c70bbbd4a753dc1bc07bcd221a541b87f0a85 /dev-libs/glib | |
parent | www-client/opera-developer: remove old (diff) | |
download | gentoo-318cef1e679d0546067b91e95f9af4c1b4f4e411.tar.gz gentoo-318cef1e679d0546067b91e95f9af4c1b4f4e411.tar.bz2 gentoo-318cef1e679d0546067b91e95f9af4c1b4f4e411.zip |
dev-libs/glib: don't try to patch non-existent sources w/ USE=-introspection
Closes: https://bugs.gentoo.org/946725
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/glib')
-rw-r--r-- | dev-libs/glib/glib-2.80.5-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-libs/glib/glib-2.80.5-r1.ebuild b/dev-libs/glib/glib-2.80.5-r1.ebuild index 6e54c9da6114..66d75184be4f 100644 --- a/dev-libs/glib/glib-2.80.5-r1.ebuild +++ b/dev-libs/glib/glib-2.80.5-r1.ebuild @@ -191,12 +191,12 @@ src_prepare() { # Link the glib source to the introspection subproject directory so it can be built there first if use introspection ; then ln -s "${S}" "${INTROSPECTION_SOURCE_DIR}/subprojects/glib" - fi - # bug #946578 - cd "${INTROSPECTION_SOURCE_DIR}" || die - eapply "${FILESDIR}"/glib-2.80.5-gobject-introspection-1.80.patch - cd "${S}" || die + # bug #946578 + cd "${INTROSPECTION_SOURCE_DIR}" || die + eapply "${FILESDIR}"/glib-2.80.5-gobject-introspection-1.80.patch + cd "${S}" || die + fi default gnome2_environment_reset |