changeset 1131:5c9d74b49fb5

Install distcc binaries in the distcc subdirectory, not in /bin.
author Rob Landley <rob@landley.net>
date Sun, 20 Jun 2010 16:58:05 -0500
parents c222ae88733a
children ea4fd1dd8c3b
files sources/sections/distcc.build
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/sources/sections/distcc.build	Sun Jun 20 16:25:35 2010 -0500
+++ b/sources/sections/distcc.build	Sun Jun 20 16:58:05 2010 -0500
@@ -1,6 +1,6 @@
 rsync_cv_HAVE_C99_VSNPRINTF=yes \
 LDFLAGS="$STATIC_FLAGS $LDFLAGS" CC="${ARCH}-cc" ./configure \
-  --host="${CROSS_TARGET}" --prefix="$STAGE_DIR" \
+  --host="${CROSS_TARGET}" --prefix="$STAGE_DIR" --bindir="$STAGE_DIR/distcc" \
   --with-included-popt --disable-Werror &&
 make -j $CPUS &&
 make -j $CPUS install &&
@@ -10,5 +10,5 @@
 [ -z "$NO_CPLUSPLUS" ] && TEMP="g++ c++"
 for i in gcc cc $TEMP
 do
-  ln -s ../bin/distcc "$STAGE_DIR/distcc/$i" || dienow
+  ln -s distcc "$STAGE_DIR/distcc/$i" || dienow
 done