Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Dec 2003 18:04:41 -0800 (PST)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 43341 for review
Message-ID:  <200312030204.hB324fRB094058@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=43341

Change 43341 by rwatson@rwatson_powerbook on 2003/12/02 18:03:56

	Also install headers in:
	
	  /System/Library/Frameworks/Kernel.framework/Headers
	
	This way they can be used in kexts.

Affected files ...

.. //depot/projects/trustedbsd/sedarwin/Makefile#4 edit

Differences ...

==== //depot/projects/trustedbsd/sedarwin/Makefile#4 (text+ko) ====

@@ -3,12 +3,15 @@
 dummy:
 	@echo Please following the directions in bootstrap_instructions.txt
 
-TBSDHEADERS=apsl/xnu/bsd/sys/extattr.h apsl/xnu/bsd/sys/mac.h \
-    apsl/xnu/bsd/sys/mac_policy.h apsl/xnu/bsd/sys/_label.h \
-    apsl/xnu/bsd/sys/ucred.h
+TBSDHEADERS=extattr.h mac.h mac_policy.h _label.h ucred.h
+
+SRC1=apsl/xnu/bsd/sys
+DEST1=/usr/include/sys
+DEST2=/System/Library/Frameworks/Kernel.framework/Headers/sys
 
 install-headers:
-	install -m 444 -o root -g wheel $(TBSDHEADERS) /usr/include/sys
+	(cd $(SRC1) ; install -m 444 -o root -g wheel $(TBSDHEADERS) $(DEST1))
+	(cd $(SRC1) ; install -m 444 -o root -g wheel $(TBSDHEADERS) $(DEST2))
 	cd libsebsd; make install-headers; cd ..
 
 libraries:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200312030204.hB324fRB094058>