[Xfce4-commits] <xfconf:master> Check abicheck.sh to be more portable (bug #8702).

Nick Schermer noreply at xfce.org
Wed Apr 18 22:46:01 CEST 2012


Updating branch refs/heads/master
         to 9fbf8cd43ddc50b289dab94ec825c05d556f63c4 (commit)
       from a6d76023707237a8c48f47a917c41013366b285f (commit)

commit 9fbf8cd43ddc50b289dab94ec825c05d556f63c4
Author: Landry Breuil <landry at rhaalovely.net>
Date:   Wed Apr 18 22:17:59 2012 +0200

    Check abicheck.sh to be more portable (bug #8702).

 xfconf/abicheck.sh |    2 +-
 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


More information about the Xfce4-commits mailing list