diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2022-12-04 12:45:44 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2022-12-04 12:45:44 +0100 |
commit | 33c441abca57d2f9c3e4641a9c4c86231e560f68 (patch) | |
tree | 838bb4043aadc5002a98fa642cb1f812b503d0d7 /sys-devel/bison | |
parent | profiles/package.mask: mask obsolete public_suffix slot for removal (diff) | |
download | gentoo-33c441abca57d2f9c3e4641a9c4c86231e560f68.tar.gz gentoo-33c441abca57d2f9c3e4641a9c4c86231e560f68.tar.bz2 gentoo-33c441abca57d2f9c3e4641a9c4c86231e560f68.zip |
sys-devel/bison: improve postinst symlink command
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sys-devel/bison')
-rw-r--r-- | sys-devel/bison/bison-3.8.2-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-devel/bison/bison-3.8.2-r1.ebuild b/sys-devel/bison/bison-3.8.2-r1.ebuild index 8a3490b4631a..ab5bfac28f04 100644 --- a/sys-devel/bison/bison-3.8.2-r1.ebuild +++ b/sys-devel/bison/bison-3.8.2-r1.ebuild @@ -88,6 +88,6 @@ pkg_postinst() { # ensure to preserve the symlinks before app-alternatives/yacc # is installed if [[ ! -h ${EROOT}/usr/bin/yacc ]]; then - ln -s yacc "${EROOT}/usr/bin/yacc.bison" || die + ln -s yacc.bison "${EROOT}/usr/bin/yacc" || die fi } |