diff options
| author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-10 23:16:09 +0100 |
|---|---|---|
| committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-10 23:16:56 +0100 |
| commit | bcfa7f8a17cc987c2d422d6397c9aefe2013b931 (patch) | |
| tree | 5392a6851fdb000888ac360f86c679821b30bdee | |
| parent | 4293c1fd3af0fcc8782ef1505868a75e0155127b (diff) | |
| download | kde-bcfa7f8a17cc987c2d422d6397c9aefe2013b931.tar.gz kde-bcfa7f8a17cc987c2d422d6397c9aefe2013b931.tar.bz2 kde-bcfa7f8a17cc987c2d422d6397c9aefe2013b931.zip | |
[base] parse arguments where usefull.
| -rw-r--r-- | eclass/base.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass index 237a30d1836..5e8979e71d7 100644 --- a/eclass/base.eclass +++ b/eclass/base.eclass @@ -119,7 +119,7 @@ base_src_compile() { debug-print-function $FUNCNAME "$@" has src_configure ${BASE_EXPF} || base_src_configure - base_src_make + base_src_make $@ } # @FUNCTION: base_src_make @@ -129,7 +129,7 @@ base_src_make() { debug-print-function $FUNCNAME "$@" if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then - emake || die "died running emake, $FUNCNAME:make" + emake $@ || die "died running emake, $FUNCNAME:make" fi } @@ -141,7 +141,7 @@ base_src_make() { base_src_install() { debug-print-function $FUNCNAME "$@" - emake DESTDIR="${D}" install || die "died running make install, $FUNCNAME:make" + emake DESTDIR="${D}" $@ install || die "died running make install, $FUNCNAME:make" base_src_install_docs } |
