[PATCH] scripts/checksyscalls.sh and non-gnu sed

From: Thomas Volpini
Date: Tue Aug 19 2008 - 06:01:42 EST


Hello,

the following patch makes the checksyscalls script work even on systems where sed is non-gnu.

best regards,
Thomas



diff --git a/scripts/checksyscalls.sh b/scripts/checksyscalls.sh
index 366f8c7..fdfb625 100755
--- a/scripts/checksyscalls.sh
+++ b/scripts/checksyscalls.sh
@@ -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
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/