scripts/checksyscalls.sh: fix for non-gnu sed
authorThomas Volpini <tvolpini@gmx.net>
Sat, 25 Oct 2008 22:02:50 +0000 (15:02 -0700)
committerSam Ravnborg <sam@ravnborg.org>
Wed, 29 Oct 2008 21:02:08 +0000 (22:02 +0100)
Make the checksyscalls script work even on systems where sed is non-gnu.

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>

scripts/checksyscalls.sh

index 41564b1..60d00d1 100755 (executable)
@@ -113,10 +113,10 @@ EOF
 }
 
 syscall_list() {
-sed -n -e '/^\#define/ { s/[^_]*__NR_\([^[:space:]]*\).*/\
+sed -n -e '/^\#define/ s/[^_]*__NR_\([^[:space:]]*\).*/\
 \#if !defined \(__NR_\1\) \&\& !defined \(__IGNORE_\1\)\
 \#warning syscall \1 not implemented\
-\#endif/p }' $1
+\#endif/p' $1
 }
 
 (ignore_list && syscall_list ${srctree}/arch/x86/include/asm/unistd_32.h) | \