From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD9A9138334 for ; Mon, 15 Jul 2019 18:06:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF3AAE0833; Mon, 15 Jul 2019 18:06:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEC6AE0833 for ; Mon, 15 Jul 2019 18:06:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 897D7347B7C for ; Mon, 15 Jul 2019 18:06:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00F6A6EA for ; Mon, 15 Jul 2019 18:06:24 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1563213871.6a3ecc5314d47dee5019e380dfd13877d2e5cd2b.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_initramfs.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 6a3ecc5314d47dee5019e380dfd13877d2e5cd2b X-VCS-Branch: master Date: Mon, 15 Jul 2019 18:06:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2d016e4-7867-4f8f-8432-556f30abf3f8 X-Archives-Hash: dce3ae4a88039e4a0368b962358d0005 commit: 6a3ecc5314d47dee5019e380dfd13877d2e5cd2b Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jul 15 18:04:31 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jul 15 18:04:31 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=6a3ecc53 gen_initramfs.sh: copy_system_binaries(): Use "lddtree -l" Using "--list" parameter is not supported by app-misc/pax-utils[-python]. Signed-off-by: Thomas Deutschmann gentoo.org> gen_initramfs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index 973ed9e..42196c5 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -151,7 +151,7 @@ copy_system_binaries() { if [[ ${is_first} -eq 1 ]] then - # `lddtree --list` first line is always the binary itself + # `lddtree -l` first line is always the binary itself print_info 5 "Copying '${base_dir}/${binary_dependency_basename}' to '${destdir}/' ..." cp -aL "${base_dir}/${binary_dependency_basename}" "${destdir}/${binary_basename}" \ || gen_die "$(get_useful_function_stack)Failed to copy '${base_dir}/${binary_dependency_basename}' to '${destdir}'!" @@ -165,7 +165,7 @@ copy_system_binaries() { print_info 5 "Need to copy dependency '${base_dir}/${binary_dependency_basename}' ..." "${FUNCNAME}" "${destdir}" "${base_dir}/${binary_dependency_basename}" fi - done 3< <(lddtree --list "${binary}" 2>/dev/null) + done 3< <(lddtree -l "${binary}" 2>/dev/null) IFS="${GK_DEFAULT_IFS}" done }