diff options
author | 2016-05-13 13:32:55 -0400 | |
---|---|---|
committer | 2016-05-13 13:40:31 -0400 | |
commit | f2d3d915865c44a0a838e39ba13ee054f9fe2ec3 (patch) | |
tree | 01a231e2bd243320b7745560d51c2a3753eaa3f6 /sys-devel/automake/automake-1.5-r2.ebuild | |
parent | sys-devel/automake: rework how HELP2MAN is set up #582734 (diff) | |
download | gentoo-f2d3d915865c44a0a838e39ba13ee054f9fe2ec3.tar.gz gentoo-f2d3d915865c44a0a838e39ba13ee054f9fe2ec3.tar.bz2 gentoo-f2d3d915865c44a0a838e39ba13ee054f9fe2ec3.zip |
sys-devel/automake: respect $ED #582734
Diffstat (limited to 'sys-devel/automake/automake-1.5-r2.ebuild')
-rw-r--r-- | sys-devel/automake/automake-1.5-r2.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-devel/automake/automake-1.5-r2.ebuild b/sys-devel/automake/automake-1.5-r2.ebuild index 467a825477d0..6a3362f1c9a9 100644 --- a/sys-devel/automake/automake-1.5-r2.ebuild +++ b/sys-devel/automake/automake-1.5-r2.ebuild @@ -36,7 +36,7 @@ src_prepare() { # slot the info pages. do this w/out munging the source so we don't have # to depend on texinfo to regen things. #464146 (among others) slot_info_pages() { - pushd "${D}"/usr/share/info >/dev/null + pushd "${ED}"/usr/share/info >/dev/null rm -f dir # Rewrite all the references to other pages. @@ -68,8 +68,8 @@ src_install() { local x for x in aclocal automake ; do - mv "${D}"/usr/bin/${x}{,-${SLOT}} || die "rename ${x}" - mv "${D}"/usr/share/${x}{,-${SLOT}} || die "move ${x}" + mv "${ED}"/usr/bin/${x}{,-${SLOT}} || die "rename ${x}" + mv "${ED}"/usr/share/${x}{,-${SLOT}} || die "move ${x}" done # remove all config.guess and config.sub files replacing them |