3c5abbc341
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>
9 lines
160 B
Python
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]
|