diff options
author | V3n3RiX <venerix@rogentos.ro> | 2015-10-03 16:29:43 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2015-10-03 16:29:43 +0100 |
commit | 01e0750c93427cde2b2d19261fefa5d1373e9c37 (patch) | |
tree | b7fb870ea7cf41fbf9174bac1d3f024656b7ccc0 /bin/armv7a-emerge | |
parent | dfec061a2da2a936da146db7f261a840faed73ac (diff) |
drop any entropy shit in here
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 "$@" |