summaryrefslogtreecommitdiff
path: root/xfconf
diff options
context:
space:
mode:
authorLandry Breuil <landry@rhaalovely.net>2012-04-18 22:17:59 +0200
committerNick Schermer <nick@xfce.org>2012-04-18 22:44:15 +0200
commit9fbf8cd43ddc50b289dab94ec825c05d556f63c4 (patch)
tree88beb54f693e58e082e7a81cb5bbef8c2e4bf4b0 /xfconf
parenta6d76023707237a8c48f47a917c41013366b285f (diff)
downloadxfconf-9fbf8cd43ddc50b289dab94ec825c05d556f63c4.tar.gz
Check abicheck.sh to be more portable (bug #8702).
Diffstat (limited to 'xfconf')
-rwxr-xr-xxfconf/abicheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfconf/abicheck.sh b/xfconf/abicheck.sh
index a21a209..850c77b 100755
--- a/xfconf/abicheck.sh
+++ b/xfconf/abicheck.sh
@@ -20,5 +20,5 @@
trap 'rm expected-abi actual-abi' EXIT
${CPP:-cpp} -DINCLUDE_INTERNAL_SYMBOLS -DINCLUDE_VARIABLES -DALL_FILES ${srcdir:-.}/xfconf.symbols | sed 's/ G_GNUC.*$//;s/ PRIVATE//;/^ *$/d;/^#/d' | sort >expected-abi
-${NM:-nm} -D -g -P .libs/libxfconf-0.so | awk '$2~/^[DRTG]$/&&$1~/^[^_]/{print $1}' | sort >actual-abi
+${NM:-nm} .libs/libxfconf-0.so* | awk '/ [DRTG] / {print $3}' | sort >actual-abi
diff -u expected-abi actual-abi