diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-02-21 09:45:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-02-21 10:53:15 +0000 |
commit | aa0b9d13b5f8c150a3b3035aa7a1d54f70720cdd (patch) | |
tree | b298b1d9985423787cb87811bcd3f750a5bea4d8 /bin | |
parent | e5cdfe589f8ce559a9e6d8fee3b1a6bd3c9ec233 (diff) |
change lib:widget delimiter from : to -
because glade catalogs don't allow : in widgetnames
which blocks making a catalog for our custom widgets
Change-Id: I3d590ce7451264b49fa5a82a752dac44e47bbd81
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/verify-custom-widgets-libs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/verify-custom-widgets-libs b/bin/verify-custom-widgets-libs index 6a04702fa4cc..8ca278456c5d 100755 --- a/bin/verify-custom-widgets-libs +++ b/bin/verify-custom-widgets-libs @@ -15,10 +15,10 @@ # its easy to put the wrong lib name in if developing # under Linux -FOO=`grep -h -r lo: */uiconfig | sed -e "s/<object class=\"//g" | sed -e "s/\".*$//"| sed 's/^[ \t]*//;s/[ \t]*$//'|sort|uniq` +FOO=`grep -h -r lo- */uiconfig | sed -e "s/<object class=\"//g" | sed -e "s/\".*$//"| sed 's/^[ \t]*//;s/[ \t]*$//'|sort|uniq` for foo in $FOO; do - lib=$(echo $foo | cut -f1 -d:) - symbol=$(echo $foo | cut -f2 -d:) + lib=$(echo $foo | cut -f1 -d-) + symbol=$(echo $foo | cut -f2 -d-) echo testing if lib$lib.so contains make$symbol nm -D solver/unxlng*/lib/lib$lib.so | grep make$symbol > /dev/null if [ $? != 0 ]; then |