Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: third_party/harfbuzz-ng/src/check-libstdc++.sh

Issue 9223010: Update harfbuzz-ng to 1a5a91dc0d8bf4b72a2f22dc6300b06ad7000b79. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't use -M option for 'git diff' to patch correctly Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/sh
2
3 LC_ALL=C
4 export LC_ALL
5
6 if which ldd 2>/dev/null >/dev/null; then
7 :
8 else
9 echo "check-libstdc++.sh: 'ldd' not found; skipping test"
10 exit 0
11 fi
12
13 test -z "$srcdir" && srcdir=.
14 stat=0
15
16 so=.libs/libharfbuzz.so
17 if test -f "$so"; then
18 echo "Checking that we are not linking to libstdc++"
19 if ldd $so | grep 'libstdc[+][+]'; then
20 echo "Ouch, linked to libstdc++"
21 stat=1
22 fi
23 else
24 echo "check-libstdc++.sh: libharfbuzz.so not found; skipping test"
25 fi
26
27 exit $stat
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/check-internal-symbols.sh ('k') | third_party/harfbuzz-ng/src/gen-arabic-joining-table.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698