author | clem <clem> | 2004-09-24 12:39:50 (UTC) |
---|---|---|
committer | clem <clem> | 2004-09-24 12:39:50 (UTC) |
commit | 478b2ead47a09956cadfacb8f469fb2fdee5531c (patch) (unidiff) | |
tree | 2e028e3de22a822d6ae779640e14999030ac3107 | |
parent | 4761d0610715569c7af83dc68ffc90fea4d35690 (diff) | |
download | opie-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.
-rwxr-xr-x | core/launcher/opie-taskbar.prerm | 2 | ||||
-rwxr-xr-x | libopie2/tools/regen.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/launcher/opie-taskbar.prerm b/core/launcher/opie-taskbar.prerm index 664160b..ae02235 100755 --- a/core/launcher/opie-taskbar.prerm +++ b/core/launcher/opie-taskbar.prerm | |||
@@ -1,5 +1,5 @@ | |||
1 | #/bin/sh | 1 | #/bin/sh |
2 | 2 | ||
3 | find /etc -name [SK][0-9][0-9]opie | xargs rm -f | 3 | find /etc -name [SK][0-9][0-9]opie | xargs -- rm -f |
4 | 4 | ||
5 | exit 0 | 5 | exit 0 |
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 | |||
@@ -11,7 +11,7 @@ def regenDebugMapper( basename ): | |||
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" ) |
@@ -269,4 +269,4 @@ Available tables: %s | |||
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 ) |