On Tue, 28 Aug 2001, Westerman, Mark wrote:
> file: domains/user/user.te
>
> define(`user_domain',`
> ....
> sinclude(includes/user-common.inc)
> ....
> ')
The problem is that the sinclude is within the quotes, so it is not being expanded until the substitution occurs. You need to unquote the sinclude so that it is expanded as part of the macro definition, e.g.:
define(`user_domain',`
....
'
sinclude(includes/user-common.inc)
`
....
')
-- Stephen D. Smalley, NAI Labs ssmalley@nai.com -- You have received this message because you are subscribed to the selinux list. If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with the words "unsubscribe selinux" without quotes as the message.Received on Wed 29 Aug 2001 - 08:35:39 EDT
This archive was generated by hypermail 2.2.0 on Wed 11 Jun 2008 - 08:10:26 EDT