diff options
author | Ian Delaney <idella4@gentoo.org> | 2016-04-14 19:59:09 +0800 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2016-04-14 20:07:01 +0800 |
commit | e7f4ae036081464c52eb4bd8d61baf87dd4478d5 (patch) | |
tree | 897e7d461a043330a28519f0301ccbd405517ff8 /app-emulation/xen | |
parent | sys-kernel/vanilla-sources: Automated version bump to 3.12.58 - remove old. (diff) | |
download | gentoo-e7f4ae036081464c52eb4bd8d61baf87dd4478d5.tar.gz gentoo-e7f4ae036081464c52eb4bd8d61baf87dd4478d5.tar.bz2 gentoo-e7f4ae036081464c52eb4bd8d61baf87dd4478d5.zip |
app-emulation/xen: correct typo in source of vn. 4.6.1
noted in gentoo bug, set with an equivalent sed statement substituting
an upstream patch, the sed being completed in one line
Gentoo-bug: #575868
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-emulation/xen')
-rw-r--r-- | app-emulation/xen/xen-4.6.1.ebuild | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app-emulation/xen/xen-4.6.1.ebuild b/app-emulation/xen/xen-4.6.1.ebuild index 3a1959d9fee7..240b96e906b5 100644 --- a/app-emulation/xen/xen-4.6.1.ebuild +++ b/app-emulation/xen/xen-4.6.1.ebuild @@ -146,6 +146,12 @@ src_prepare() { # not strictly necessary to fix this sed -i 's/, "-Werror"//' "${S}/tools/python/setup.py" || die "failed to re-set setup.py" + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h + + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h || die + epatch_user } |