[Lunar-commits] r15871 - lunar/trunk/var/lib/lunar/compilers

Auke Kok sofar at lunar-linux.org
Mon Jul 25 09:49:31 UTC 2005


Author: sofar
Date: 2005-07-25 09:49:29 +0000 (Mon, 25 Jul 2005)
New Revision: 15871

Modified:
   lunar/trunk/var/lib/lunar/compilers/make
Log:
Fix bug that would cause ccache not to be used because the wrappers were not in the path anymore. #917


Modified: lunar/trunk/var/lib/lunar/compilers/make
===================================================================
--- lunar/trunk/var/lib/lunar/compilers/make	2005-07-25 02:48:06 UTC (rev 15870)
+++ lunar/trunk/var/lib/lunar/compilers/make	2005-07-25 09:49:29 UTC (rev 15871)
@@ -1,10 +1,8 @@
 #!/bin/bash
 
-export PATH=${PATH/\/var\/lib\/lunar\/compilers:/}
-
 if [ -n "$LUNAR_DEBUG" ] ; then
   echo "++ $MAKE_EXT make ${MAKES:+-j$MAKES} \"$@\"" >&2
 fi
 
-$MAKE_EXT make ${MAKES:+-j$MAKES} "$@"
+$MAKE_EXT /usr/bin/make ${MAKES:+-j$MAKES} "$@"
 



More information about the Lunar-commits mailing list