summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-02-21 09:45:33 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-02-21 10:53:15 +0000
commitaa0b9d13b5f8c150a3b3035aa7a1d54f70720cdd (patch)
treeb298b1d9985423787cb87811bcd3f750a5bea4d8 /bin
parente5cdfe589f8ce559a9e6d8fee3b1a6bd3c9ec233 (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-xbin/verify-custom-widgets-libs6
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