From owner-p4-projects@FreeBSD.ORG Thu Oct 26 19:23:35 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id D1E8516A522; Thu, 26 Oct 2006 19:23:34 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0780416A53D for ; Thu, 26 Oct 2006 19:23:33 +0000 (UTC) (envelope-from millert@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA85143D66 for ; Thu, 26 Oct 2006 19:23:33 +0000 (GMT) (envelope-from millert@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9QJNX4M078552 for ; Thu, 26 Oct 2006 19:23:33 GMT (envelope-from millert@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9QJNXxS078547 for perforce@freebsd.org; Thu, 26 Oct 2006 19:23:33 GMT (envelope-from millert@freebsd.org) Date: Thu, 26 Oct 2006 19:23:33 GMT Message-Id: <200610261923.k9QJNXxS078547@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to millert@freebsd.org using -f From: Todd Miller To: Perforce Change Reviews Cc: Subject: PERFORCE change 108513 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Oct 2006 19:23:35 -0000 http://perforce.freebsd.org/chv.cgi?CH=108513 Change 108513 by millert@millert_macbook on 2006/10/26 19:23:07 Add export group gid instead of using the uid as the gid. Remove broken dmg target. Affected files ... .. //depot/projects/trustedbsd/sedarwin8/Makeconfig.in#2 edit .. //depot/projects/trustedbsd/sedarwin8/Makefile#3 edit .. //depot/projects/trustedbsd/sedarwin8/release/Makefile#3 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin8/Makeconfig.in#2 (text+ko) ==== @@ -18,15 +18,16 @@ DARWIN_ROOT = $(SOURCE_ROOT)/darwin DARWIN = $(DARWIN_ROOT)/$(XNU) EXPORT_HDRS = $(DARWIN)/BUILD/obj/EXPORT_HDRS +EXPORT_USR_INCLUDE = $(SOURCE_ROOT)/export/usr/include BINOWN= $(EXPORT_OWNER) -BINGRP= $(EXPORT_OWNER) +BINGRP= $(EXPORT_GROUP) LIBOWN= $(EXPORT_OWNER) -LIBGRP= $(EXPORT_OWNER) +LIBGRP= $(EXPORT_GROUP) INCOWN= $(EXPORT_OWNER) -INCGRP= $(EXPORT_OWNER) +INCGRP= $(EXPORT_GROUP) MANOWN= $(EXPORT_OWNER) -MANGRP= $(EXPORT_OWNER) +MANGRP= $(EXPORT_GROUP) BINDIR= /usr/bin DARWIN_HDRS = -I$(EXPORT_HDRS)/bsd -I$(EXPORT_HDRS)/osfmk -I$(EXPORT_HDRS)/security -I$(EXPORT_HDRS)/libkern -I$(EXPORT_HDRS) ==== //depot/projects/trustedbsd/sedarwin8/Makefile#3 (text+ko) ==== @@ -24,9 +24,6 @@ package: $(MAKE) -C release package -dmg: - $(MAKE) -C release dmg - clean: # $(MAKE) -C release distclean $(MAKE) -C darwin clean @@ -37,6 +34,7 @@ @echo "SOURCE_ROOT = `pwd`" >> $@ @echo "# You must set this variable to a valid user." >> $@ @echo "EXPORT_OWNER = `id -un`" >> $@ + @echo "EXPORT_GROUP = `id -gn`" >> $@ @cat $< >> $@ @echo "Auto-generating Makeconfig..." ==== //depot/projects/trustedbsd/sedarwin8/release/Makefile#3 (text+ko) ==== @@ -24,10 +24,6 @@ package: sudo make -C packages -dmg: - sudo make -C packages dmg - cp packages/MAC.dmg .. - packageclean: sudo make -C packages clean