x11-drivers/xf86-input-wacom: arm stable wrt bug #704592
[gentoo.git] / eclass / bsdmk.eclass
index a92b4c03ec76dad47017b286b7cb3d0f6e2b702c..2f9c3f3609d4b92706bde9d0d31b3f571d7781bd 100644 (file)
@@ -1,6 +1,8 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
+
+# @DEAD
+# All consumers are gone.  Removal in 14 days
 
 # @ECLASS: bsdmk.eclass
 # @MAINTAINER:
@@ -39,7 +41,9 @@ mkmake() {
 
        tc-export CC CXX LD RANLIB
 
-       ${BMAKE} ${MAKEOPTS} ${EXTRA_EMAKE} ${mymakeopts} NO_WERROR= STRIP= "$@"
+       set -- ${BMAKE} ${MAKEOPTS} ${EXTRA_EMAKE} ${mymakeopts} NO_WERROR= STRIP= "$@"
+       echo "${@}"
+       "${@}"
 }
 
 # @FUNCTION: mkinstall
@@ -52,7 +56,9 @@ mkinstall() {
 
        # STRIP= will replace the default value of -s, leaving to portage the
        # task of stripping executables.
-       ${BMAKE} ${mymakeopts} NO_WERROR= STRIP= MANSUBDIR= DESTDIR="${D}" "$@" install
+       set -- ${BMAKE} ${mymakeopts} NO_WERROR= STRIP= MANSUBDIR= DESTDIR="${D}" "$@" install
+       echo "${@}"
+       "${@}"
 }
 
 # @FUNCTION: dummy_mk