diff options
author | Chris Fraire <cfraire@me.com> | 2016-09-13 11:21:55 -0500 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2017-08-22 19:36:57 -0400 |
commit | 89d58ee09d14e0fcdb6f3e8b43197b24ba7a0036 (patch) | |
tree | 23bd0f5f11b497dfe9b3749878682a594ef35331 /usr/src/tools | |
parent | 1702cce751c5cb7ead878d0205a6c90b027e3de8 (diff) | |
download | illumos-gate-89d58ee09d14e0fcdb6f3e8b43197b24ba7a0036.tar.gz |
8523 Fix "clobber" in a few Makefiles
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/tools')
-rw-r--r-- | usr/src/tools/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr/src/tools/Makefile b/usr/src/tools/Makefile index 2f02192e1e..72f01a8ef0 100644 --- a/usr/src/tools/Makefile +++ b/usr/src/tools/Makefile @@ -23,6 +23,7 @@ # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. # Copyright 2014 Garrett D'Amore <garrett@damore.org> # Copyright 2016 Toomas Soome <tsoome@me.com> +# Copyright (c) 2016, Chris Fraire <cfraire@me.com>. # include ../Makefile.master @@ -128,6 +129,10 @@ DOROOTDIRS= $(ROOTDIRS) clobber:= DOROOTDIRS= clean:= DOROOTDIRS= +DOROOTONBLDLIBPY= $(ROOTONBLDLIBPY) +clobber:= DOROOTONBLDLIBPY= +clean:= DOROOTONBLDLIBPY= + all install: $(SUBDIRS) clean: $(SUBDIRS) @@ -143,7 +148,7 @@ _msg: $(MSGSUBDIRS) $(SUBDIRS) $(CLOSED_SUBDIRS): $(BOOT_SUBDIRS) -$(BOOT_SUBDIRS) $(SUBDIRS): $$(DOROOTDIRS) $(ROOTONBLDLIBPY) FRC +$(BOOT_SUBDIRS) $(SUBDIRS): $$(DOROOTDIRS) $$(DOROOTONBLDLIBPY) FRC @cd $@; pwd; $(MAKE) $(TARGET) $(ROOTDIRS): |