diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-07-25 13:55:27 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-07-25 13:55:27 +0200 |
commit | 8b66dfac4898666bd95c77dde05e1f0b973f4b42 (patch) | |
tree | 3d621c5f8df43c236b3ef76181b3dd38eb812301 /sys-apps | |
parent | sys-libs/libblockdev: Use python_is_python3 (diff) | |
download | gentoo-8b66dfac4898666bd95c77dde05e1f0b973f4b42.tar.gz gentoo-8b66dfac4898666bd95c77dde05e1f0b973f4b42.tar.bz2 gentoo-8b66dfac4898666bd95c77dde05e1f0b973f4b42.zip |
sys-apps/file: Fixed installation with USE="python"
Closes: https://bugs.gentoo.org/662090
Package-Manager: Portage-2.3.43, Repoman-2.3.10
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/file/file-5.34.ebuild | 3 | ||||
-rw-r--r-- | sys-apps/file/file-9999.ebuild | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys-apps/file/file-5.34.ebuild b/sys-apps/file/file-5.34.ebuild index 536dd456e9b8..848fa28a4820 100644 --- a/sys-apps/file/file-5.34.ebuild +++ b/sys-apps/file/file-5.34.ebuild @@ -40,7 +40,8 @@ src_prepare() { elibtoolize # don't let python README kill main README #60043 - mv python/README.md README.python.md || die + mv python/README.md python/README.python.md || die + sed 's@README.md@README.python.md@' -i python/setup.py || die #662090 } multilib_src_configure() { diff --git a/sys-apps/file/file-9999.ebuild b/sys-apps/file/file-9999.ebuild index f346e1b700af..8bdee5d348af 100644 --- a/sys-apps/file/file-9999.ebuild +++ b/sys-apps/file/file-9999.ebuild @@ -41,7 +41,8 @@ src_prepare() { elibtoolize # don't let python README kill main README #60043 - mv python/README.md README.python.md || die + mv python/README.md python/README.python.md || die + sed 's@README.md@README.python.md@' -i python/setup.py || die #662090 } multilib_src_configure() { |