summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Packard <keithp@koto.keithp.com>2007-10-25 00:22:04 -0700
committerKeith Packard <keithp@koto.keithp.com>2007-10-25 00:22:04 -0700
commita72ef35ce68efa3687dee84d49dc40a5ccd22917 (patch)
treece35d88b4c78b1824e5dc3dc6e89d8b94ae94aa6 /src
parent369b6b5bfbab57bbc7fb6482f6fd9c88e5057e5a (diff)
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).
Diffstat (limited to 'src')
-rwxr-xr-xsrc/makealias2
1 files changed, 1 insertions, 1 deletions
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