[llvm-commits] [llvm] r85088 - /llvm/trunk/test/Makefile

Edward O'Callaghan eocallaghan at auroraux.org
Sun Oct 25 19:37:56 PDT 2009


Author: evocallaghan
Date: Sun Oct 25 21:37:56 2009
New Revision: 85088

URL: http://llvm.org/viewvc/llvm-project?rev=85088&view=rev
Log:
Fix gmake check for AuroraUX triple.

Modified:
    llvm/trunk/test/Makefile

Modified: llvm/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Makefile?rev=85088&r1=85087&r2=85088&view=diff

==============================================================================
--- llvm/trunk/test/Makefile (original)
+++ llvm/trunk/test/Makefile Sun Oct 25 21:37:56 2009
@@ -78,9 +78,13 @@
 # Both AuroraUX & Solaris do not have the -m flag for ulimit
 ifeq ($(HOST_OS),SunOS)
 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
-else
+else # !SunOS
+ifeq ($(HOST_OS),AuroraUX)
+ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
+else # !AuroraUX
 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ;
-endif
+endif # AuroraUX
+endif # SunOS
 
 ifneq ($(RUNTEST),)
 check-local:: site.exp





More information about the llvm-commits mailing list