diff options
Diffstat (limited to 'bin/armv7a-emerge')
-rwxr-xr-x | bin/armv7a-emerge | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/bin/armv7a-emerge b/bin/armv7a-emerge deleted file mode 100755 index 742b925..0000000 --- a/bin/armv7a-emerge +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -. /etc/make.conf - -# just make sure -FEATURES="${FEATURES} distcc distcc-pump" - -DISTCC_PATH="/usr/lib/distcc/bin" -CUR_CHOST="$(basename /usr/lib/gcc/armv*)" -DISTCC_WRAPPER="${CUR_CHOST}-wrapper" - -pushd "${DISTCC_PATH}" > /dev/null || exit 1 -cur_link=$(readlink cc) -if [ "${cur_link}" = "/usr/bin/distcc" ] || [ ! -f "${DISTCC_WRAPPER}" ]; then - echo "Fixing links in ${DISTCC_PATH}" - rm -f c++ g++ gcc cc || exit 1 - echo "#!/bin/bash" > "${DISTCC_WRAPPER}" - echo "exec /usr/lib/distcc/bin/${CUR_CHOST}-g\${0:\$[-2]} \"\$@\"" >> "${DISTCC_WRAPPER}" - chmod a+x "${DISTCC_WRAPPER}" || exit 1 - ln -s "${DISTCC_WRAPPER}" cc || exit 1 - ln -s "${DISTCC_WRAPPER}" gcc || exit 1 - ln -s "${DISTCC_WRAPPER}" g++ || exit 1 - ln -s "${DISTCC_WRAPPER}" c++ || exit 1 -fi -popd > /dev/null - -export FEATURES PATH -exec emerge "$@" |