diff options
author | marha <marha@users.sourceforge.net> | 2012-03-30 07:38:51 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-03-30 07:38:51 +0200 |
commit | 31706e67674f308e3e7f2a8aaf02f1e0a00fbade (patch) | |
tree | bc2e29927687a9299eeeccbb1f85ab950922c828 /fontconfig/src/makealias | |
parent | ecf66d49a103b87d07da8b7d0f9a3629681e6643 (diff) | |
download | vcxsrv-31706e67674f308e3e7f2a8aaf02f1e0a00fbade.tar.gz vcxsrv-31706e67674f308e3e7f2a8aaf02f1e0a00fbade.tar.bz2 vcxsrv-31706e67674f308e3e7f2a8aaf02f1e0a00fbade.zip |
fontconfig git update 30 mar 2012
Diffstat (limited to 'fontconfig/src/makealias')
-rw-r--r-- | fontconfig/src/makealias | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fontconfig/src/makealias b/fontconfig/src/makealias index fca94d4a2..e2f31c621 100644 --- a/fontconfig/src/makealias +++ b/fontconfig/src/makealias @@ -17,7 +17,7 @@ while read name; do hattr='__attribute((visibility("hidden")))' echo "extern __typeof ($name) $alias $hattr;" >> $HEAD echo "#define $name $alias" >> $HEAD - ifdef=$(grep -l '^'$name'[ (]' "$SRCDIR"/*.c | sed -n 1p | sed -e 's/^.*\/\([^.]*\)\.c/__\1__/') + ifdef=`grep -l '^'$name'[ (]' "$SRCDIR"/*.c | sed -n 1p | sed -e 's/^.*\/\([^.]*\)\.c/__\1__/'` if [ -z "$ifdef" ] ; then echo "error: could not locate $name in src/*.c" 1>&2 exit 1 |