From: "Matt Turner" <mattst88@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: targets/support/ Date: Thu, 10 Jun 2021 00:48:43 +0000 (UTC) [thread overview] Message-ID: <1613873144.42332a642def9a8d454246da68955172442e7aa5.mattst88@gentoo> (raw) commit: 42332a642def9a8d454246da68955172442e7aa5 Author: Daniel Cordero <catalyst <AT> 0xdc <DOT> io> AuthorDate: Thu Feb 4 11:07:21 2021 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sun Feb 21 02:05:44 2021 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=42332a64 targets: Use the correct distcc libdir Since distcc-3.3 (and bug 651030) distcc symlinks have been installed to /usr/lib/distcc/bin/ regardless of get_libdir. Signed-off-by: Daniel Cordero <catalyst <AT> 0xdc.io> Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> targets/support/chroot-functions.sh | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 88465c31..d8472d46 100755 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -83,11 +83,10 @@ setup_features() { # This sets up automatic cross-distcc-fu according to # https://wiki.gentoo.org/wiki/Distcc/Cross-Compiling CHOST=$(portageq envvar CHOST) - LIBDIR=$(get_libdir) - cd /usr/${LIBDIR}/distcc/bin + cd /usr/lib/distcc/bin rm cc gcc g++ c++ 2>/dev/null - echo -e '#!/bin/bash\nexec /usr/'${LIBDIR}'/distcc/bin/'${CHOST}'-g${0:$[-2]} "$@"' > ${CHOST}-wrapper - chmod a+x /usr/${LIBDIR}/distcc/bin/${CHOST}-wrapper + echo -e '#!/bin/bash\nexec /usr/lib/distcc/bin/'${CHOST}'-g${0:$[-2]} "$@"' > ${CHOST}-wrapper + chmod a+x /usr/lib/distcc/bin/${CHOST}-wrapper for i in cc gcc g++ c++; do ln -s ${CHOST}-wrapper ${i}; done fi @@ -171,13 +170,12 @@ setup_gcc(){ } cleanup_distcc() { - LIBDIR=$(get_libdir) - rm -rf /etc/distcc/hosts + rm -f /etc/distcc/hosts for i in cc gcc c++ g++; do - rm -f /usr/${LIBDIR}/distcc/bin/${i} - ln -s /usr/bin/distcc /usr/${LIBDIR}/distcc/bin/${i} + rm -f /usr/lib/distcc/bin/${i} + ln -s /usr/bin/distcc /usr/lib/distcc/bin/${i} done - rm -f /usr/${LIBDIR}/distcc/bin/*-wrapper + rm -f /usr/lib/distcc/bin/*-wrapper } cleanup_icecream() {
WARNING: multiple messages have this Message-ID (diff)
From: "Matt Turner" <mattst88@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ Date: Sun, 21 Feb 2021 02:05:55 +0000 (UTC) [thread overview] Message-ID: <1613873144.42332a642def9a8d454246da68955172442e7aa5.mattst88@gentoo> (raw) Message-ID: <20210221020555.7Kdq03cnMVBcyX-jjR-42CXZLi_hhvPSHdumgHoCzV0@z> (raw) commit: 42332a642def9a8d454246da68955172442e7aa5 Author: Daniel Cordero <catalyst <AT> 0xdc <DOT> io> AuthorDate: Thu Feb 4 11:07:21 2021 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sun Feb 21 02:05:44 2021 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=42332a64 targets: Use the correct distcc libdir Since distcc-3.3 (and bug 651030) distcc symlinks have been installed to /usr/lib/distcc/bin/ regardless of get_libdir. Signed-off-by: Daniel Cordero <catalyst <AT> 0xdc.io> Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> targets/support/chroot-functions.sh | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 88465c31..d8472d46 100755 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -83,11 +83,10 @@ setup_features() { # This sets up automatic cross-distcc-fu according to # https://wiki.gentoo.org/wiki/Distcc/Cross-Compiling CHOST=$(portageq envvar CHOST) - LIBDIR=$(get_libdir) - cd /usr/${LIBDIR}/distcc/bin + cd /usr/lib/distcc/bin rm cc gcc g++ c++ 2>/dev/null - echo -e '#!/bin/bash\nexec /usr/'${LIBDIR}'/distcc/bin/'${CHOST}'-g${0:$[-2]} "$@"' > ${CHOST}-wrapper - chmod a+x /usr/${LIBDIR}/distcc/bin/${CHOST}-wrapper + echo -e '#!/bin/bash\nexec /usr/lib/distcc/bin/'${CHOST}'-g${0:$[-2]} "$@"' > ${CHOST}-wrapper + chmod a+x /usr/lib/distcc/bin/${CHOST}-wrapper for i in cc gcc g++ c++; do ln -s ${CHOST}-wrapper ${i}; done fi @@ -171,13 +170,12 @@ setup_gcc(){ } cleanup_distcc() { - LIBDIR=$(get_libdir) - rm -rf /etc/distcc/hosts + rm -f /etc/distcc/hosts for i in cc gcc c++ g++; do - rm -f /usr/${LIBDIR}/distcc/bin/${i} - ln -s /usr/bin/distcc /usr/${LIBDIR}/distcc/bin/${i} + rm -f /usr/lib/distcc/bin/${i} + ln -s /usr/bin/distcc /usr/lib/distcc/bin/${i} done - rm -f /usr/${LIBDIR}/distcc/bin/*-wrapper + rm -f /usr/lib/distcc/bin/*-wrapper } cleanup_icecream() {
next reply other threads:[~2021-06-10 0:48 UTC|newest] Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-06-10 0:48 Matt Turner [this message] 2021-02-21 2:05 ` [gentoo-commits] proj/catalyst:master commit in: targets/support/ Matt Turner -- strict thread matches above, loose matches on Subject: below -- 2023-05-11 14:47 [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2023-05-11 14:47 Matt Turner 2022-11-28 20:38 Matt Turner 2022-11-28 20:38 Matt Turner 2022-11-28 20:38 Matt Turner 2022-11-22 3:49 Matt Turner 2022-11-22 3:49 Matt Turner 2022-11-20 1:43 Matt Turner 2022-11-20 0:21 Matt Turner 2022-11-20 0:21 Matt Turner 2022-11-20 0:21 Matt Turner 2022-11-20 0:21 Matt Turner 2022-11-17 23:42 [gentoo-commits] proj/catalyst:master " Matt Turner 2022-11-20 0:21 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2022-11-17 23:42 [gentoo-commits] proj/catalyst:master " Matt Turner 2022-11-20 0:21 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2022-01-30 20:42 Matt Turner 2022-01-30 20:42 Matt Turner 2021-07-29 22:00 [gentoo-commits] proj/catalyst:master " Matt Turner 2022-01-30 20:42 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2021-07-29 1:22 [gentoo-commits] proj/catalyst:master " Matt Turner 2022-01-30 20:42 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-12-19 19:56 Matt Turner 2020-12-19 19:56 Matt Turner 2020-10-29 21:00 Matt Turner 2020-10-29 21:00 Matt Turner 2020-10-29 21:00 Matt Turner 2020-10-29 21:00 Matt Turner 2020-10-29 21:00 Matt Turner 2020-10-28 20:51 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-10-29 21:00 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-10-28 20:51 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-10-29 21:00 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-10-22 18:06 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-10-29 21:00 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-10-22 18:06 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-10-29 21:00 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-10-22 18:06 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-10-29 21:00 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-10-21 17:58 [gentoo-commits] proj/catalyst:master " Matt Turner 2020-10-29 21:00 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-10-20 8:30 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-10-29 21:00 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-05-21 20:25 [gentoo-commits] proj/catalyst:master " Matt Turner 2020-05-20 1:52 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-05-20 3:39 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-05-20 1:52 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-05-17 3:26 [gentoo-commits] proj/catalyst:master " Matt Turner 2020-05-16 6:55 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner 2020-05-16 6:54 [gentoo-commits] proj/catalyst:pending/mattst88 " Matt Turner 2020-05-16 6:55 ` [gentoo-commits] proj/catalyst:wip/mattst88 " Matt Turner
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=1613873144.42332a642def9a8d454246da68955172442e7aa5.mattst88@gentoo \ --to=mattst88@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.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.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox