platform_external_selinux/policycoreutils/sandbox/start
Eric Paris 3c5abbc341 policycoreutils: sandbox: Makefile: new man pages
we have man pages which aren't being instelled with make install.  We
also do not include -Werror -Wall -Wextra in the build like we do with
other packages, so include those.

Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Dan Walsh <dwalsh@redhat.com>
2011-08-26 14:28:14 -04:00

9 lines
160 B
Python

#! /usr/bin/python -Es
import gtk, commands, sys
rc = [-1,'']
try:
rc=commands.getstatusoutput(sys.argv[1])
except:
pass
if rc[0] == 0:
print rc[1]