1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 02:39:49 +03:00

genex/sym2xps: also accept components names beginning with ~

This commit is contained in:
Werner Almesberger 2012-04-17 09:53:51 -03:00
parent 024ffd4e47
commit 7de800eb77

View File

@ -32,7 +32,7 @@ out=$5
exit 1 exit 1
} }
grep "^DEF $sym " "$lib" >/dev/null || { grep "^DEF $sym " "$lib" >/dev/null || grep "^DEF ~$sym " "$lib" >/dev/null || {
echo "\"$sym\" not found in $lib" 1>&2 echo "\"$sym\" not found in $lib" 1>&2
exit 1 exit 1
} }