commit: 04c0fbf399b92ca4713be304a14f63415b66e32d
Author: Yuta SATOH <nigoro.dev <AT> gmail <DOT> com>
AuthorDate: Sun Oct 9 08:19:59 2016 +0000
Commit: Yuta SATOH <nigoro <AT> gentoo <DOT> gr <DOT> jp>
CommitDate: Sun Oct 9 08:19:59 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=04c0fbf3
eclass/bsdmk.eclass: Pass all of arguments to mkinstall.
eclass/bsdmk.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/bsdmk.eclass b/eclass/bsdmk.eclass
index 3ce3572..a92b4c0 100644
--- a/eclass/bsdmk.eclass
+++ b/eclass/bsdmk.eclass
@@ -79,5 +79,5 @@ bsdmk_src_compile() {
# @DESCRIPTION:
# The bsdmk src_install function, which is exported
bsdmk_src_install() {
- mkinstall || die "install failed"
+ mkinstall "$@" || die "install failed"
}