projects
/
platform
/
upstream
/
libHarfBuzzSharp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
357d0f2
)
Improve check for internal symbols
author
Behdad Esfahbod
<behdad@behdad.org>
Thu, 13 May 2010 03:48:40 +0000
(23:48 -0400)
committer
Behdad Esfahbod
<behdad@behdad.org>
Thu, 13 May 2010 03:48:40 +0000
(23:48 -0400)
src/check-internal-symbols.sh
patch
|
blob
|
history
diff --git
a/src/check-internal-symbols.sh
b/src/check-internal-symbols.sh
index 75585185314ca30e704d50bff099c0c0163c403f..124a7b04d3b0890b848ac3f106c48a907fd771c3 100755
(executable)
--- a/
src/check-internal-symbols.sh
+++ b/
src/check-internal-symbols.sh
@@
-17,7
+17,7
@@
stat=0
so=.libs/libharfbuzz.so
if test -f "$so"; then
echo "Checking that we are exposing internal symbols"
- if nm $so | grep ' T
_hb
'; then
+ if nm $so | grep ' T
' | grep -v ' T _fini\>\| T _init\>\| T hb_
'; then
echo "Ouch, internal symbols exposed"
stat=1
fi