From: Marco Fortina <marco_fortina@hotmail.it> To: "guix-patches@gnu.org" <guix-patches@gnu.org>, "guix-devel@gnu.org" <guix-devel@gnu.org> Subject: [bug#62917] [bug#73799] [PATCH] Fix 'guix shell: error: symlink: File exists: "/bin/cc"' Date: Tue, 22 Oct 2024 10:49:32 +0000 [thread overview] Message-ID: <AS8PR10MB58291EBFC600E5EDCCB20C39F74C2@AS8PR10MB5829.EURPRD10.PROD.OUTLOOK.COM> (raw) [-- Attachment #1: Type: text/plain, Size: 854 bytes --] This patch closes issue when running "guix shell --container --emulate-fhs clang-toolchain gcc-toolchain" or "guix shell --container --emulate-fhs clang-toolchain gcc-toolchain": diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm index a219b2ac89..37f11395f9 100644 --- a/guix/scripts/environment.scm +++ b/guix/scripts/environment.scm @@ -464,7 +464,8 @@ (define (setup-fhs profile) ;; /bin since that already has the sh symlink and the other (optional) FHS ;; bin directories will link to /bin. (let ((gcc-path (string-append profile "/bin/gcc"))) - (if (file-exists? gcc-path) + (if (and (file-exists? gcc-path) + (not (file-exists? "/bin/cc"))) (symlink gcc-path "/bin/cc"))) ;; Guix's ldconfig doesn't search in FHS default locations, so provide a Cheers, Marco [-- Attachment #2: Type: text/html, Size: 3665 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Marco Fortina <marco_fortina@hotmail.it> To: "guix-patches@gnu.org" <guix-patches@gnu.org>, "guix-devel@gnu.org" <guix-devel@gnu.org> Subject: bug#62917: [bug#73799] [PATCH] Fix 'guix shell: error: symlink: File exists: "/bin/cc"' Date: Tue, 22 Oct 2024 10:49:32 +0000 [thread overview] Message-ID: <AS8PR10MB58291EBFC600E5EDCCB20C39F74C2@AS8PR10MB5829.EURPRD10.PROD.OUTLOOK.COM> (raw) In-Reply-To: <2085439243.1521663.1681776855547@privateemail.com> [-- Attachment #1: Type: text/plain, Size: 854 bytes --] This patch closes issue when running "guix shell --container --emulate-fhs clang-toolchain gcc-toolchain" or "guix shell --container --emulate-fhs clang-toolchain gcc-toolchain": diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm index a219b2ac89..37f11395f9 100644 --- a/guix/scripts/environment.scm +++ b/guix/scripts/environment.scm @@ -464,7 +464,8 @@ (define (setup-fhs profile) ;; /bin since that already has the sh symlink and the other (optional) FHS ;; bin directories will link to /bin. (let ((gcc-path (string-append profile "/bin/gcc"))) - (if (file-exists? gcc-path) + (if (and (file-exists? gcc-path) + (not (file-exists? "/bin/cc"))) (symlink gcc-path "/bin/cc"))) ;; Guix's ldconfig doesn't search in FHS default locations, so provide a Cheers, Marco [-- Attachment #2: Type: text/html, Size: 3665 bytes --]
next reply other threads:[~2024-10-22 10:50 UTC|newest] Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-10-22 10:49 Marco Fortina [this message] 2024-10-22 10:49 ` bug#62917: [bug#73799] [PATCH] Fix 'guix shell: error: symlink: File exists: "/bin/cc"' Marco Fortina -- strict thread matches above, loose matches on Subject: below -- 2023-04-18 0:14 bug#62917: ‘guix shell -CH’ should be able to contain both GCC and Clang zamfofex 2023-04-18 0:23 ` bug#62917: [bug report subject correction] zamfofex
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=AS8PR10MB58291EBFC600E5EDCCB20C39F74C2@AS8PR10MB5829.EURPRD10.PROD.OUTLOOK.COM \ --to=marco_fortina@hotmail.it \ --cc=guix-devel@gnu.org \ --cc=guix-patches@gnu.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.