[SCM] build.samba.org - branch master updated

Björn Jacke bjacke at samba.org
Wed Dec 1 15:17:34 MST 2010


The branch, master has been updated
       via  73098e8 generic.fns: fix duplicate compiler detection
      from  0ec7988 extend time for builder72

http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 73098e8ef67ff8a551eaf1572bebcd6b96f81f56
Author: Björn Jacke <bj at sernet.de>
Date:   Wed Dec 1 23:14:45 2010 +0100

    generic.fns: fix duplicate compiler detection
    
    "sum" on NetBSD outputs the filename - that's why `sum cc` and `sum gcc` where
    *always* different :-)

-----------------------------------------------------------------------

Summary of changes:
 generic.fns |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/generic.fns b/generic.fns
index 702f830..a19abdf 100644
--- a/generic.fns
+++ b/generic.fns
@@ -20,7 +20,7 @@ for compiler in gcc cc icc; do
 
     # We do not want to build with the same compiler twice
     # cc is a symlink to gcc on some systems
-    cur_compiler_sum="`sum $path`"
+    cur_compiler_sum="`sum $path | sed 's/ .*//'`"
     test x"$cur_compiler_sum" = x"" && {
        cur_compiler_sum="$path"
     }


-- 
build.samba.org


More information about the samba-cvs mailing list