From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RwTE2-0001SB-Ff for garchives@archives.gentoo.org; Sun, 12 Feb 2012 06:47:54 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3A81E0512; Sun, 12 Feb 2012 06:47:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 57EB5E0512 for ; Sun, 12 Feb 2012 06:47:44 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA0C11B4004 for ; Sun, 12 Feb 2012 06:47:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 842CEE5400 for ; Sun, 12 Feb 2012 06:47:41 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <8e800df298362c0936712852a80f7b323552fbe7.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: ChangeLog gen_compile.sh X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 8e800df298362c0936712852a80f7b323552fbe7 Date: Sun, 12 Feb 2012 06:47:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 55d1a05c-45e5-43e7-8216-aaed5ecc3033 X-Archives-Hash: 88034b0d5bdcad01c8bd37000d5d6452 commit: 8e800df298362c0936712852a80f7b323552fbe7 Author: Robin H. Johnson gentoo org> AuthorDate: Sun Feb 12 06:47:32 2012 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Feb 12 06:47:32 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3D8e800df2 More UTILS_CROSS_COMPILE prefix on strip calls. Signed-off-by: Robin H. Johnson gentoo.org> --- ChangeLog | 3 +++ gen_compile.sh | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index c796941..41db029 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ # Distributed under the GPL v2 # $Id$ =20 + 12 Feb 2012; Robin H. Johnson gen_compile.sh: + More UTILS_CROSS_COMPILE prefix on strip calls. + 12 Feb 2012; Robin H. Johnson arch/alpha/modules_= load, arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load, arch/parisc/modules_load, arch/parisc64/modules_load, arch/ppc/modules= _load, diff --git a/gen_compile.sh b/gen_compile.sh index 8a53c74..bc93be8 100755 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -460,7 +460,7 @@ compile_lvm() { ${UTILS_CROSS_COMPILE}strip "sbin/lvm.static" || gen_die 'Could not strip lvm.static!' # See bug 382555 - strip "sbin/dmsetup.static" || + ${UTILS_CROSS_COMPILE}strip "sbin/dmsetup.static" || gen_die 'Could not strip dmsetup.static' /bin/tar -cjf "${LVM_BINCACHE}" sbin/lvm.static sbin/dmsetup.static || gen_die 'Could not create binary cache' @@ -500,7 +500,7 @@ compile_mdadm() { install -m 0755 -s mdmon "${TEMP}/mdadm/sbin/mdmon" print_info 1 ' >> Copying to bincache...' cd "${TEMP}/mdadm" - strip "sbin/mdadm" "sbin/mdmon" || + ${UTILS_CROSS_COMPILE}strip "sbin/mdadm" "sbin/mdmon" || gen_die 'Could not strip mdadm binaries!' /bin/tar -cjf "${MDADM_BINCACHE}" sbin/mdadm sbin/mdmon || gen_die 'Could not create binary cache' @@ -702,7 +702,7 @@ compile_iscsi() { print_info 1 'iscsistart: >> Copying to cache...' [ -f "${TEMP}/${ISCSI_DIR}/usr/iscsistart" ] || gen_die 'iscsistart executable does not exist!' - strip "${TEMP}/${ISCSI_DIR}/usr/iscsistart" || + ${UTILS_CROSS_COMPILE}strip "${TEMP}/${ISCSI_DIR}/usr/iscsistart" || gen_die 'Could not strip iscsistart binary!' bzip2 "${TEMP}/${ISCSI_DIR}/usr/iscsistart" || gen_die 'bzip2 compression of iscsistart failed!' @@ -749,7 +749,7 @@ compile_gpg() { print_info 1 'gnupg: >> Copying to cache...' [ -f "${TEMP}/${GPG_DIR}/g10/gpg" ] || gen_die 'gnupg executable does not exist!' - strip "${TEMP}/${GPG_DIR}/g10/gpg" || + ${UTILS_CROSS_COMPILE}strip "${TEMP}/${GPG_DIR}/g10/gpg" || gen_die 'Could not strip gpg binary!' bzip2 -z -c "${TEMP}/${GPG_DIR}/g10/gpg" > "${GPG_BINCACHE}" || gen_die 'Could not copy the gpg binary to the package directory, does= the directory exist?'