[email protected] schrieb:
Author: allison
Date: Sat Jul 11 05:16:24 2009
New Revision: 39993
URL: https://trac.parrot.org/parrot/changeset/39993

Log:
[install] Add an 'installed' flag to the two versions of the frozen
parrot config data so languages and pbc_to_exe can easily make build
decisions. Part of fix for TT #495.

Modified:
   trunk/config/gen/config_pm/config_lib_pasm.in

Modified: trunk/config/gen/config_pm/config_lib_pasm.in
==============================================================================
--- trunk/config/gen/config_pm/config_lib_pasm.in       Sat Jul 11 02:47:28 
2009        (r39992)
+++ trunk/config/gen/config_pm/config_lib_pasm.in       Sat Jul 11 05:16:24 
2009        (r39993)
@@ -18,7 +18,12 @@
     if I11, is_install
     set S1, "@PWD@"
     set P0["prefix"], S1
+    set P0["installed"], "0"
+    branch freeze_config
 is_install:
+    set P0["installed"], "1"
+freeze_config:
+
     freeze S0, P0
     print S0
     end

Oha! We are coming close finally.

This patch of mine was rejected by allison a year ago, so I had to use weirder logic to check for that. Now it will get easier again.
--
Reini Urban
http://phpwiki.org/  http://murbreak.at/
_______________________________________________
http://lists.parrot.org/mailman/listinfo/parrot-dev

Reply via email to