changeset 287:75033cdf4c1c

Fix to make the distcc symlinks correctly.
author Rob Landley <rob@landley.net>
date Thu, 31 Jan 2008 03:59:32 -0600
parents 2eb466ea972b
children a64a358ad792
files cross-compiler.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/cross-compiler.sh	Thu Jan 31 03:59:10 2008 -0600
+++ b/cross-compiler.sh	Thu Jan 31 03:59:32 2008 -0600
@@ -73,8 +73,8 @@
 # Set up symlinks for distcc
 
 mkdir -p "${CROSS}/distcc" &&
-ln -s ../bin/gcc-unwrapped cc &&
-ln -s ../bin/gcc-unwrapped gcc
+ln -s ../bin/gcc-unwrapped "${CROSS}/distcc/cc" &&
+ln -s ../bin/gcc-unwrapped "${CROSS}/distcc/gcc"
 
 [ $? -ne 0 ] && dienow