Print this page
3806 illumos build execs echo unnecessarily
Reviewed by: Garrett D'Amore <garrett.damore@gmail.com>
Reviewed by: Gary Mills <gary_mills@fastmail.fm>

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/sparc/Makefile.sparc.shared
          +++ new/usr/src/uts/sparc/Makefile.sparc.shared
↓ open down ↓ 12 lines elided ↑ open up ↑
  13   13  # When distributing Covered Code, include this CDDL HEADER in each
  14   14  # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15  # If applicable, add the following below this CDDL HEADER, with the
  16   16  # fields enclosed by brackets "[]" replaced with your own identifying
  17   17  # information: Portions Copyright [yyyy] [name of copyright owner]
  18   18  #
  19   19  # CDDL HEADER END
  20   20  #
  21   21  
  22   22  # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
       23 +# Copyright (c) 2013 Andrew Stormont.  All rights reserved.
  23   24  
  24   25  
  25   26  #
  26   27  #       This makefile contains the common definitions for all sparc
  27   28  #       implementation architecture independent modules.
  28   29  #
  29   30  
  30   31  #
  31   32  #       Define supported builds
  32   33  #
↓ open down ↓ 138 lines elided ↑ open up ↑
 171  172  #       XXX: The above could possibly be done for more flags and files, but
 172  173  #            is left as an experiment to the interested reader. Be forewarned,
 173  174  #            that excessive use could lead to maintenance difficulties.
 174  175  #
 175  176  DEBUG_DEFS_OBJ32        =
 176  177  DEBUG_DEFS_DBG32        = -DDEBUG
 177  178  DEBUG_DEFS_OBJ64        =
 178  179  DEBUG_DEFS_DBG64        = -DDEBUG
 179  180  DEBUG_DEFS              = $(DEBUG_DEFS_$(BUILD_TYPE))
 180  181  
 181      -DEBUG_COND_OBJ32        :sh = echo \\043
      182 +DEBUG_COND_OBJ32        = $(POUND_SIGN)
 182  183  DEBUG_COND_DBG32        =
 183      -DEBUG_COND_OBJ64        :sh = echo \\043
      184 +DEBUG_COND_OBJ64        = $(POUND_SIGN)
 184  185  DEBUG_COND_DBG64        =
 185  186  IF_DEBUG_OBJ            = $(DEBUG_COND_$(BUILD_TYPE))$(OBJS_DIR)/
 186  187  
 187  188  $(IF_DEBUG_OBJ)syscall.o        :=      DEBUG_DEFS      += -DSYSCALLTRACE
 188  189  $(IF_DEBUG_OBJ)clock.o          :=      DEBUG_DEFS      += -DKSLICE=1
 189  190  
 190  191  # Comment these out if you don't want dispatcher lock statistics.
 191  192  
 192  193  # $(IF_DEBUG_OBJ)disp_lock.o    := DEBUG_DEFS   += -DDISP_LOCK_STATS
 193  194  
↓ open down ↓ 325 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX