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 15393158094 for ; Mon, 18 Jul 2022 20:14:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F934E0E8D; Mon, 18 Jul 2022 20:14:05 +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 2CDD1E0E8D for ; Mon, 18 Jul 2022 20:14:05 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0850C340DC6 for ; Mon, 18 Jul 2022 20:14:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C4A6500 for ; Mon, 18 Jul 2022 20:14:02 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1658175232.125e8f3bafc06f5898c33191eb4178bbf8013435.dilfridge@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-amd64.conf tools/catalyst-auto-x86.conf X-VCS-Directories: tools/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 125e8f3bafc06f5898c33191eb4178bbf8013435 X-VCS-Branch: master Date: Mon, 18 Jul 2022 20:14:02 +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: af082578-50ba-4551-909d-31189246fa89 X-Archives-Hash: f7b809cd9252c84810bb86bbe4050e14 commit: 125e8f3bafc06f5898c33191eb4178bbf8013435 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Jul 18 20:13:15 2022 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Jul 18 20:13:52 2022 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=125e8f3b Dont be so verbous, ln -s ! Signed-off-by: Andreas K. Hüttel gentoo.org> tools/catalyst-auto-amd64.conf | 2 +- tools/catalyst-auto-x86.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/catalyst-auto-amd64.conf b/tools/catalyst-auto-amd64.conf index c4b0c33a..401c640d 100644 --- a/tools/catalyst-auto-amd64.conf +++ b/tools/catalyst-auto-amd64.conf @@ -70,7 +70,7 @@ update_symlinks() { -e 's/20\d{6}/latest/g;' \ -e 's/20\d{2}\.\d{2}/latest/g;' \ <<<"$f") - ln -svf "$f" "$of" + ln -sf "$f" "$of" done popd >/dev/null || exit done diff --git a/tools/catalyst-auto-x86.conf b/tools/catalyst-auto-x86.conf index ced79e5d..b0a70c76 100644 --- a/tools/catalyst-auto-x86.conf +++ b/tools/catalyst-auto-x86.conf @@ -48,7 +48,7 @@ update_symlinks() { -e 's/20\d{6}/latest/g;' \ -e 's/20\d{2}\.\d{2}/latest/g;' \ <<<"$f") - ln -svf "$f" "$of" + ln -sf "$f" "$of" done popd >/dev/null || exit done