summaryrefslogtreecommitdiff
path: root/libopie2/tools/regen.py
Unidiff
Diffstat (limited to 'libopie2/tools/regen.py') (more/less context) (ignore whitespace changes)
-rwxr-xr-xlibopie2/tools/regen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/tools/regen.py b/libopie2/tools/regen.py
index 89385e1..2f53a14 100755
--- a/libopie2/tools/regen.py
+++ b/libopie2/tools/regen.py
@@ -8,13 +8,13 @@
8 8
9def regenDebugMapper( basename ): 9def regenDebugMapper( basename ):
10 """ 10 """
11 Debug Mapper - maps ioctl numbers to names, e.g. 0x4x5a -> SIOCGIWNAME 11 Debug Mapper - maps ioctl numbers to names, e.g. 0x4x5a -> SIOCGIWNAME
12 """ 12 """
13 13
14 result = os.popen( 'find /usr/include -name "*.h" |xargs grep -h SIOC|grep 0x' ).readlines() 14 result = os.popen( 'find /usr/include -name "*.h" |xargs -- grep -h SIOC|grep 0x' ).readlines()
15 15
16 try: 16 try:
17 tablehfile = file( basename+".h", "w" ) 17 tablehfile = file( basename+".h", "w" )
18 except: 18 except:
19 tablehfile = sys.stdout 19 tablehfile = sys.stdout
20 20
@@ -266,7 +266,7 @@ Available tables: %s
266 func = locals()["regen%s" % sys.argv[1]] 266 func = locals()["regen%s" % sys.argv[1]]
267 except KeyError: 267 except KeyError:
268 print "Table '%s' unknown." % sys.argv[1] 268 print "Table '%s' unknown." % sys.argv[1]
269 sys.exit( -1 ) 269 sys.exit( -1 )
270 else: 270 else:
271 func( sys.argv[2] ) 271 func( sys.argv[2] )
272 sys.exit( 0 ) \ No newline at end of file 272 sys.exit( 0 )