From cf47a5e72424cc2053e3c3ac09279a0af8c4dd39 Mon Sep 17 00:00:00 2001 From: Landry Breuil Date: Wed, 18 Apr 2012 22:17:59 +0200 Subject: [PATCH] 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 -- 1.7.6