Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

app-shells/bash: rename builtins.1 to bash_builtins.1 #26673

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,11 @@ src_install() {
done
fi

doman doc/*.1
# Install bash_builtins.1 and rbash.1
emake -C doc DESTDIR="${D}" install_builtins
sed 's:bash\.1:man1/&:' doc/rbash.1 > "${T}"/rbash.1 || die
doman "${T}"/rbash.1

newdoc CWRU/changelog ChangeLog
dosym bash.info /usr/share/info/bashref.info
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,11 @@ src_install() {
done
fi

doman doc/*.1
# Install bash_builtins.1 and rbash.1
emake -C doc DESTDIR="${D}" install_builtins
sed 's:bash\.1:man1/&:' doc/rbash.1 > "${T}"/rbash.1 || die
doman "${T}"/rbash.1

newdoc CWRU/changelog ChangeLog
dosym bash.info /usr/share/info/bashref.info
}
Expand Down
6 changes: 5 additions & 1 deletion app-shells/bash/bash-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,11 @@ src_install() {
done
fi

doman doc/*.1
# Install bash_builtins.1 and rbash.1
emake -C doc DESTDIR="${D}" install_builtins
sed 's:bash\.1:man1/&:' doc/rbash.1 > "${T}"/rbash.1 || die
doman "${T}"/rbash.1

newdoc CWRU/changelog ChangeLog
dosym bash.info /usr/share/info/bashref.info
}
Expand Down