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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C998115ACFC for ; Sun, 30 Apr 2023 03:00:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C0CDE085A; Sun, 30 Apr 2023 03:00:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DAFEBE085A for ; Sun, 30 Apr 2023 03:00:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A56E634116D for ; Sun, 30 Apr 2023 03:00:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E1458AC for ; Sun, 30 Apr 2023 02:59:59 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1682823596.22b58d511521fea50e0f6797a39b1750b3764c85.sam@gentoo> Subject: [gentoo-commits] proj/gcc-config:master commit in: / X-VCS-Repository: proj/gcc-config X-VCS-Files: gcc-config X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 22b58d511521fea50e0f6797a39b1750b3764c85 X-VCS-Branch: master Date: Sun, 30 Apr 2023 02:59:59 +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: a9f26f23-73c3-4ab0-bf58-4d672e3bd5b3 X-Archives-Hash: 151a0255076056e1f145a1bb923aadee commit: 22b58d511521fea50e0f6797a39b1750b3764c85 Author: Sam James gentoo org> AuthorDate: Sun Apr 30 02:58:53 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 30 02:59:56 2023 +0000 URL: https://gitweb.gentoo.org/proj/gcc-config.git/commit/?id=22b58d51 gcc-config: Add missing terminating quote for 'backing up' path message Cosmetic. Before: * Backing up '//usr/lib/gcc/hppa2.0-unknown-linux-gnu/12/libgcc_s.so.4' to '/lib After: * Backing up '//usr/lib/gcc/hppa2.0-unknown-linux-gnu/12/libgcc_s.so.4' to '/lib' Signed-off-by: Sam James gentoo.org> gcc-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc-config b/gcc-config index f39dd5c..80951b4 100755 --- a/gcc-config +++ b/gcc-config @@ -426,7 +426,7 @@ handle_split_usr() { # but for now, that should be safe ... for gcclib in "${ROOT}${LDPATH}"/lib${gcclib}.so.* ; do [[ -e ${gcclib} ]] || continue - einfo "Backing up '${gcclib}' to '${libdir}" + einfo "Backing up '${gcclib}' to '${libdir}'" cp -pP "${gcclib}" "${libdir}"/.gcc.config.new/ # no need to sanity `rm` this as the `mv` should take care # of it. we also need this step to be completely atomic