summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-10-31 14:29:01 +0100
committerMichael Stahl <mstahl@redhat.com>2013-10-31 14:52:59 +0100
commitfc68745898647e1b9070459be43c5d1e0e933150 (patch)
treee45e85806fe6a29bd05e9fa5f7c54a6b1baea126 /bin
parentb9120cbb170bac1b82b5e3d4a3ad1369e1526c8b (diff)
verify-custom-widgets-libs: check libraries in instdir
Change-Id: Ia46c8df28ad2eed8ccdd6ec00f6bcd8358d8bb26
Diffstat (limited to 'bin')
-rwxr-xr-xbin/verify-custom-widgets-libs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/verify-custom-widgets-libs b/bin/verify-custom-widgets-libs
index 8ca278456c5d..3337013ae1bd 100755
--- a/bin/verify-custom-widgets-libs
+++ b/bin/verify-custom-widgets-libs
@@ -20,7 +20,7 @@ for foo in $FOO; do
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
+ nm -D instdir/unxlng*/program/lib$lib.so | grep make$symbol > /dev/null
if [ $? != 0 ]; then
echo "MISSING. Windows will crash"
else