Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Feb 2005 23:09:16 GMT
From:      Kelly Djahandari <kelly@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 71771 for review
Message-ID:  <200502242309.j1ON9Gl2099465@repoman.freebsd.org>

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

Change 71771 by kelly@kelly_riveroaks2.earthlink.net on 2005/02/24 23:08:50

	Modified to get the list of multilabel file systems 
	for sebsd_setfiles. Otherwise, file systems are null 
	and sebsd_setfiles returns 'invalid argument'.

Affected files ...

.. //depot/projects/trustedbsd/sebsd/contrib/sebsd/policy/Makefile#16 edit

Differences ...

==== //depot/projects/trustedbsd/sebsd/contrib/sebsd/policy/Makefile#16 (text+ko) ====

@@ -48,8 +48,8 @@
 INSTALLCMD = install -c -o root -g wheel -m 400 
 APPCONFDIR = $(DESTDIR)/etc/security
 
-MULTILABELMOUNTS != /sbin/mount -t ufs -p | \
-	/usr/bin/awk '{if (match($$4, "multilabel")) {print $$2}}'
+MULTILABELMOUNTS = $(shell /sbin/mount -t ufs -p | \
+	/usr/bin/awk '{if (match($$4, "multilabel")) {print $$2}}')
 
 UNUSED_TE_FILES := $(wildcard domains/program/unused/*.te)
 



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