From a72ef35ce68efa3687dee84d49dc40a5ccd22917 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 25 Oct 2007 00:22:04 -0700 Subject: [PATCH] Replace makealias pattern with something supported by POSIX grep (bug 11083) The suggested replacement in the bug was not supported by GNU grep, so I created something that should be supported everywhere (famous last words). --- src/makealias | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makealias b/src/makealias index ef4d3c2..bbc90f0 100755 --- a/src/makealias +++ b/src/makealias @@ -15,7 +15,7 @@ while read name; do hattr='__attribute((visibility("hidden")))' echo "extern __typeof ($name) $alias $hattr;" >> $HEAD echo "#define $name $alias" >> $HEAD - grep -l '^'$name'\>' "$SRCDIR"/*.c | head -1 | sed -e 's/^.*\/\([^.]*\)\.c/#ifdef __\1__/' >> $TAIL + grep -l '^'$name'[ (]' "$SRCDIR"/*.c | head -1 | sed -e 's/^.*\/\([^.]*\)\.c/#ifdef __\1__/' >> $TAIL echo "#undef $name" >> $TAIL cattr='__attribute((alias("'$alias'"), visibility("default")))' echo "extern __typeof ($name) $name $cattr;" >> $TAIL -- 2.39.2