diff options
Diffstat (limited to 'usr/src/cmd/dtrace')
-rw-r--r-- | usr/src/cmd/dtrace/demo/Makefile | 10 | ||||
-rw-r--r-- | usr/src/cmd/dtrace/test/tst/Makefile.com | 4 |
2 files changed, 9 insertions, 5 deletions
diff --git a/usr/src/cmd/dtrace/demo/Makefile b/usr/src/cmd/dtrace/demo/Makefile index a75a418a96..cfb35083ee 100644 --- a/usr/src/cmd/dtrace/demo/Makefile +++ b/usr/src/cmd/dtrace/demo/Makefile @@ -21,6 +21,8 @@ # # Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. # +# Copyright (c) 2018, Joyent, Inc. +# include ../../Makefile.cmd @@ -157,11 +159,11 @@ $(ROOTDEMODIR): $(ROOTDEMODIR)/%: % $(INS.file) -$(HTMLFILES): $(DFILES) $(MKDEMO) - ./$(MKDEMO) $@ +$(HTMLFILES): $(DFILES) $(MKDEMO) + $(PERL) ./$(MKDEMO) $@ -$(DFILES): $(MKDEMO) - ./$(MKDEMO) $@ +$(DFILES): $(MKDEMO) + $(PERL) ./$(MKDEMO) $@ $(ROOTDEMOFILES): $(ROOTDEMODIR) diff --git a/usr/src/cmd/dtrace/test/tst/Makefile.com b/usr/src/cmd/dtrace/test/tst/Makefile.com index d4b787d5ec..336c68e086 100644 --- a/usr/src/cmd/dtrace/test/tst/Makefile.com +++ b/usr/src/cmd/dtrace/test/tst/Makefile.com @@ -23,6 +23,8 @@ # Copyright 2008 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # +# Copyright (c) 2018, Joyent, Inc. +# include $(SRC)/cmd/Makefile.cmd @@ -109,6 +111,6 @@ scripts: FRC @cd ../cmd/scripts; pwd; $(MAKE) install dstyle: FRC - @if [ -n "$(DSRCS)" ]; then $(DSTYLE) $(DSRCS); fi + @if [ -n "$(DSRCS)" ]; then $(PERL) $(DSTYLE) $(DSRCS); fi FRC: |