[llvm-commits] [test-suite] r109761 - /test-suite/trunk/External/Makefile

Eric Christopher echristo at apple.com
Thu Jul 29 10:27:07 PDT 2010


On Jul 29, 2010, at 10:18 AM, Jakob Stoklund Olesen wrote:

> Author: stoklund
> Date: Thu Jul 29 12:18:15 2010
> New Revision: 109761
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=109761&view=rev
> Log:
> Don't attempt to run skidmarks10 if the sources were not found by configure.
> 
> Modified:
>    test-suite/trunk/External/Makefile
> 
> Modified: test-suite/trunk/External/Makefile
> URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/Makefile?rev=109761&r1=109760&r2=109761&view=diff
> ==============================================================================
> --- test-suite/trunk/External/Makefile (original)
> +++ test-suite/trunk/External/Makefile Thu Jul 29 12:18:15 2010
> @@ -39,6 +39,10 @@
> PARALLEL_DIRS := $(filter-out HMMER, $(PARALLEL_DIRS))
> endif
> 
> +ifndef USE_SKIDMARKS10
> +PARALLEL_DIRS := $(filter-out skidmarks10, $(PARALLEL_DIRS))
> +endif
> +
> # Sparc can't handle Namd: infinite loop, cause unknown
> ifeq ($(ARCH),Sparc)
> PARALLEL_DIRS := $(filter-out Namd, $(PARALLEL_DIRS))
> 

Oops, forgot to commit that.

Thanks!

-eric



More information about the llvm-commits mailing list