summaryrefslogtreecommitdiff
path: root/libopie2/tools
authorclem <clem>2004-09-24 12:39:50 (UTC)
committer clem <clem>2004-09-24 12:39:50 (UTC)
commit478b2ead47a09956cadfacb8f469fb2fdee5531c (patch) (unidiff)
tree2e028e3de22a822d6ae779640e14999030ac3107 /libopie2/tools
parent4761d0610715569c7af83dc68ffc90fea4d35690 (diff)
downloadopie-478b2ead47a09956cadfacb8f469fb2fdee5531c.zip
opie-478b2ead47a09956cadfacb8f469fb2fdee5531c.tar.gz
opie-478b2ead47a09956cadfacb8f469fb2fdee5531c.tar.bz2
Denote the end of the xargs parameters, to avoid "xargs: invalid option -- v"
kind of errors with old xargs.
Diffstat (limited to 'libopie2/tools') (more/less context) (show whitespace changes)
-rwxr-xr-xlibopie2/tools/regen.py2
1 files changed, 1 insertions, 1 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
@@ -1,62 +1,62 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2 2
3"""Regenerate C++ mapping classes""" 3"""Regenerate C++ mapping classes"""
4 4
5#---------------------------------------------------------------------------# 5#---------------------------------------------------------------------------#
6# # 6# #
7#---------------------------------------------------------------------------# 7#---------------------------------------------------------------------------#
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
21 try: 21 try:
22 tablecfile = file( basename+".cpp", "w" ) 22 tablecfile = file( basename+".cpp", "w" )
23 except: 23 except:
24 tablecfile = sys.stdout 24 tablecfile = sys.stdout
25 25
26 print >>tablehfile,""" 26 print >>tablehfile,"""
27/* 27/*
28 * debug value mapper - generated by %s - (C) Michael 'Mickey' Lauer <mickey@vanille.de> 28 * debug value mapper - generated by %s - (C) Michael 'Mickey' Lauer <mickey@vanille.de>
29 */ 29 */
30 30
31#ifndef DEBUGMAPPER_H 31#ifndef DEBUGMAPPER_H
32#define DEBUGMAPPER_H 32#define DEBUGMAPPER_H
33 33
34#include <qstring.h> 34#include <qstring.h>
35#include <qintdict.h> 35#include <qintdict.h>
36 36
37typedef QIntDict<QString> IntStringMap; 37typedef QIntDict<QString> IntStringMap;
38 38
39class DebugMapper 39class DebugMapper
40{ 40{
41 public: 41 public:
42 DebugMapper(); 42 DebugMapper();
43 ~DebugMapper(); 43 ~DebugMapper();
44 44
45 const QString& map( int value ) const; 45 const QString& map( int value ) const;
46 private: 46 private:
47 IntStringMap _map; 47 IntStringMap _map;
48}; 48};
49 49
50#endif 50#endif
51""" % sys.argv[0] 51""" % sys.argv[0]
52 52
53 print >>tablecfile,""" 53 print >>tablecfile,"""
54/* 54/*
55 * debug value mapper - generated by %s - (C) Michael 'Mickey' Lauer <mickey@vanille.de> 55 * debug value mapper - generated by %s - (C) Michael 'Mickey' Lauer <mickey@vanille.de>
56 */ 56 */
57 57
58#include <opie2/odebug.h> 58#include <opie2/odebug.h>
59 59
60#include "%s" 60#include "%s"
61 61
62DebugMapper::DebugMapper() 62DebugMapper::DebugMapper()