[Lunar-commits] r27014 - lunar/trunk/sbin

Auke Kok sofar at lunar-linux.org
Wed Mar 12 17:35:38 CET 2008


Author: sofar
Date: 2008-03-12 17:35:38 +0100 (Wed, 12 Mar 2008)
New Revision: 27014

Modified:
   lunar/trunk/sbin/lin
Log:
[FIX] make configopts known in larger context.

This appears to fix #227 (related #338). Proper cleanup is also
needed here as well.


Modified: lunar/trunk/sbin/lin
===================================================================
--- lunar/trunk/sbin/lin	2008-03-03 18:12:43 UTC (rev 27013)
+++ lunar/trunk/sbin/lin	2008-03-12 16:35:38 UTC (rev 27014)
@@ -86,14 +86,15 @@
     if [ -z "$TEMP_DOWNLOAD_PIDS" ] ; then
       export TEMP_DOWNLOAD_PIDS=$(temp_create "download-pids")
       export TEMP_PREPAREDDEPS=$(temp_create "prepared-depends")
-      export TEMP_CONFIGOPTS=$(temp_create "configopts")
     fi
+    export TEMP_CONFIGOPTS=$(temp_create "configopts")
 
     # pass 1 : run full dependency checking
     # This pass does configuration and dependency identification.
     if ! DEPS_ONLY=--deps build_depends $MODULES ; then
       temp_destroy $TEMP_DOWNLOAD_PIDS
       temp_destroy $TEMP_PREPAREDDEPS
+      temp_destroy $TEMP_CONFIGOPTS
       verbose_msg "Unexpected errors, bailing out!"
       exit 1
     fi



More information about the Lunar-commits mailing list