[SCM] Lisaac compiler branch, stable, updated. lisaac-0.12-469-g1e8b0f8

Mildred Ki'Lya silkensedai at online.fr
Sat Sep 5 16:48:43 UTC 2009


The following commit has been merged in the stable branch:
commit 1e8b0f8e914710b1cee4a56fe98f17fd217b5e41
Author: Mildred Ki'Lya <silkensedai at online.fr>
Date:   Sat Sep 5 18:44:06 2009 +0200

    don't copy the shorter to bin if -valid is not given on the command line

diff --git a/src/make.lip b/src/make.lip
index 9ba9cfd..1a28d39 100755
--- a/src/make.lip
+++ b/src/make.lip
@@ -78,12 +78,14 @@ Section Private
   (
     general_back_end;
     (is_valid).if {
-      execute "cp lisaac.c ../bin/.";
-      execute "cp lisaac ../bin/.";
+      (is_shorter).if {
+        execute "cp shorter ../bin/.";
+      } else {
+        execute "cp lisaac.c ../bin/.";
+        execute "cp lisaac ../bin/.";
+      };
     };
-    (is_shorter).if {
-      execute "cp shorter ../bin/.";
-    };    
+   
   );
   
 Section Public

-- 
Lisaac compiler



More information about the Lisaac-commits mailing list