Print this page
16446 dtrace consumers should not be isaexec'd
Change-Id: Ibf80c7283c421cba98e80dce272c6dd51d24bb87

*** 1,12 **** # # CDDL HEADER START # # The contents of this file are subject to the terms of the ! # Common Development and Distribution License, Version 1.0 only ! # (the "License"). You may not use this file except in compliance ! # with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. --- 1,11 ---- # # CDDL HEADER START # # The contents of this file are subject to the terms of the ! # Common Development and Distribution License (the "License"). ! # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License.
*** 18,57 **** # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # ! # Copyright 2003 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # - #ident "%Z%%M% %I% %E% SMI" - # ! PROG= intrstat include ../Makefile.cmd ! $(64ONLY)SUBDIRS= $(MACH) ! $(BUILD64)SUBDIRS += $(MACH64) ! all := TARGET = all ! install := TARGET = install ! clean := TARGET = clean ! clobber := TARGET = clobber ! lint := TARGET = lint .KEEP_STATE: ! all: $(SUBDIRS) ! clean clobber lint: $(SUBDIRS) ! install: $(SUBDIRS) ! -$(RM) $(ROOTUSRSBINPROG) ! -$(LN) $(ISAEXEC) $(ROOTUSRSBINPROG) ! $(SUBDIRS): FRC ! @cd $@; pwd; $(MAKE) $(TARGET) ! FRC: include ../Makefile.targ --- 17,68 ---- # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # ! # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # ! PROG = intrstat ! OBJS = intrstat.o include ../Makefile.cmd + include ../Makefile.cmd.64 ! STATCOMMONDIR = $(SRC)/cmd/stat/common ! STAT_COMMON_OBJS = timestamp.o ! STAT_COMMON_SRCS = $(STAT_COMMON_OBJS:%.o=$(STATCOMMONDIR)/%.c) + CPPFLAGS += -I$(STATCOMMONDIR) + CFLAGS += $(CCVERBOSE) + CERRWARN += $(CNOWARN_UNINIT) + LDLIBS += -ldtrace + + FILEMODE = 0555 + + CLEANFILES += $(OBJS) $(STAT_COMMON_OBJS) + + ROOTLINK = $(PROG:%=$(ROOTUSRSBIN64)/%) + .KEEP_STATE: ! all: $(PROG) ! install: all $(ROOTUSRSBINPROG) $(ROOTLINK) ! $(ROOTLINK): ! $(RM) $@; $(SYMLINK) ../../sbin/$(@F) $@ ! $(PROG): $(OBJS) $(STAT_COMMON_OBJS) ! $(LINK.c) -o $@ $(OBJS) $(STAT_COMMON_OBJS) $(LDLIBS) ! $(POST_PROCESS) ; $(STRIP_STABS) ! %.o : $(STATCOMMONDIR)/%.c ! $(COMPILE.c) -o $@ $< ! $(POST_PROCESS_O) + clean: + -$(RM) $(CLEANFILES) + include ../Makefile.targ