diff options
author | Garrett D'Amore <garrett@nexenta.com> | 2010-09-13 15:21:36 -0700 |
---|---|---|
committer | Garrett D'Amore <garrett@nexenta.com> | 2010-09-13 15:21:36 -0700 |
commit | 2ad72058bc680e30f084e9f9ba8ceb0f77386821 (patch) | |
tree | e07c285090aa686093bbf42d176a3d948ec41e95 /usr/src/Makefile | |
parent | 84cf253f8f6b41850d9fd9d5c853b30ce633bb40 (diff) | |
download | illumos-joyent-2ad72058bc680e30f084e9f9ba8ceb0f77386821.tar.gz |
188 should keep unused closed-bins out of the proto area
193 kcfd removal causes check_rtime noise
116 README mentioned non existing usr/illumos
Reviewed by: richlowe@richlowe.net, gwr@nexenta.com
Approved by: richlowe@richlowe.net
Diffstat (limited to 'usr/src/Makefile')
-rw-r--r-- | usr/src/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/src/Makefile b/usr/src/Makefile index 3322c85431..0bcd5533ce 100644 --- a/usr/src/Makefile +++ b/usr/src/Makefile @@ -136,8 +136,9 @@ closedbins: FRC $(ROOTDIRS) exit 1; \ fi; \ $(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \ - (cd $$CLOSED_ROOT; tar cf - .) | \ - (cd $(ROOT); tar xBpf -); \ + (cd $$CLOSED_ROOT; \ + $(TAR) cfX - $(CODEMGR_WS)/exception_lists/closed-bins .) | \ + (cd $(ROOT); $(TAR) xBpf -); \ fi # |