[Lunar-commits] r24067 - lunar/trunk/var/lib/lunar/functions

Auke Kok sofar at lunar-linux.org
Sat Apr 14 22:30:38 CEST 2007


Author: sofar
Date: 2007-04-14 22:30:38 +0200 (Sat, 14 Apr 2007)
New Revision: 24067

Modified:
   lunar/trunk/var/lib/lunar/functions/depends.lunar
Log:
Deleting the entire brackets was not correct - it leaked SOURCE_DIRECTORY
back and that doesn't get overwritten. This ensures that in the first
loop of lin doesn't pollute the single-module runs.


Modified: lunar/trunk/var/lib/lunar/functions/depends.lunar
===================================================================
--- lunar/trunk/var/lib/lunar/functions/depends.lunar	2007-04-14 19:32:11 UTC (rev 24066)
+++ lunar/trunk/var/lib/lunar/functions/depends.lunar	2007-04-14 20:30:38 UTC (rev 24067)
@@ -326,12 +326,14 @@
 build_module_depends() {
   debug_msg "build_module_depends ($@)"
   if [ -n "$DEPS_ONLY" ] ; then
+   (
     if ! run_conflicts $1 ; then
       exit 1
     fi &&
     run_details $1 &&
     run_configure &&
     RECONFIGURE= run_depends
+   )
   else
     if ! run_conflicts $1 ; then
       exit 1



More information about the Lunar-commits mailing list