[llvm-commits] [test-suite] r107802 - /test-suite/trunk/Makefile.rules

Bob Wilson bob.wilson at apple.com
Wed Jul 7 12:00:51 PDT 2010


Author: bwilson
Date: Wed Jul  7 14:00:51 2010
New Revision: 107802

URL: http://llvm.org/viewvc/llvm-project?rev=107802&view=rev
Log:
Update test-suite Makefile.rules to match llvm's Makefile.rules as changed
in svn 107758.

Modified:
    test-suite/trunk/Makefile.rules

Modified: test-suite/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.rules?rev=107802&r1=107801&r2=107802&view=diff
==============================================================================
--- test-suite/trunk/Makefile.rules (original)
+++ test-suite/trunk/Makefile.rules Wed Jul  7 14:00:51 2010
@@ -154,9 +154,8 @@
 
 # If ENABLE_ASSERTIONS=1 is specified (make command line or configured),
 # then adjust the CONFIGURATION name appropriately (to match LLVM makefiles)
-ifeq ($(DISABLE_ASSERTIONS),1)
-  # Indicate that assertions are turned off using a minus sign
-  CONFIGURATION := $(CONFIGURATION)-Asserts
+ifneq ($(DISABLE_ASSERTIONS),1)
+  CONFIGURATION := $(CONFIGURATION)+Asserts
 endif
 
 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or





More information about the llvm-commits mailing list