PERFORCE change 108513 for review
Todd Miller
millert at FreeBSD.org
Thu Oct 26 19:23:49 UTC 2006
http://perforce.freebsd.org/chv.cgi?CH=108513
Change 108513 by millert at 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
More information about the trustedbsd-cvs
mailing list