Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 6E46B429E30 for ; Tue, 30 Aug 2011 05:46:21 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uUQOghCh+g4y for ; Tue, 30 Aug 2011 05:46:21 -0700 (PDT) Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id CA910429E28 for ; Tue, 30 Aug 2011 05:46:20 -0700 (PDT) Received: by bkd1 with SMTP id 1so5539795bkd.26 for ; Tue, 30 Aug 2011 05:46:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=from:to:cc:subject:in-reply-to:references:user-agent:date :message-id:mime-version:content-type; bh=LJqlwHf86xhSMU4RQkcxVbB00lLBgKbjkmCTSx5GGgA=; b=hqPa9f5EuCksiSwSURovtne8pUwOmwsr5/3EOlrjZRL1kB0BZH0CRty0Zh1D14QHD6 py+n5eSsRB5K7nWxd5Xjzaico+s1AI7bI7ZeafLIgyI+zZ3pIfh6eOFRGx20yqAo0ty4 sLvi1xVBVzGicloLOiKyyr0XMYXDK5m+RgrNs= Received: by 10.204.143.130 with SMTP id v2mr74965bku.18.1314708375868; Tue, 30 Aug 2011 05:46:15 -0700 (PDT) Received: from localhost (pc44es141.cs.uni-magdeburg.de [141.44.32.169]) by mx.google.com with ESMTPS id j17sm12057bks.13.2011.08.30.05.46.14 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 30 Aug 2011 05:46:15 -0700 (PDT) From: Matthias Guedemann To: Tomi Ollila Subject: removed "--defined" option from nm in gen-version-script.sh replaced functionality with grep In-Reply-To: References: <8739gj2r39.fsf@pc44es141.cs.uni-magdeburg.de> User-Agent: Notmuch/0.7-47-ga9e04d3 (http://notmuchmail.org) Emacs/23.3.1 (x86_64-pc-linux-gnu) Date: Tue, 30 Aug 2011 14:46:14 +0200 Message-ID: <87r54312zt.fsf@pc44es141.cs.uni-magdeburg.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: notmuch@notmuchmail.org X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 12:46:21 -0000 --- lib/gen-version-script.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/gen-version-script.sh b/lib/gen-version-script.sh index ec80196..f71afec 100644 --- a/lib/gen-version-script.sh +++ b/lib/gen-version-script.sh @@ -12,7 +12,7 @@ HEADER=$1 shift printf '{\nglobal:\n' -nm --defined $* | awk '$3 ~ "Xapian.*Error" {print $3}' | sort | uniq | \ +nm $* | grep "^[0-f][0-f]*" | awk '$3 ~ "Xapian.*Error" {print $3}' | sort | uniq | \ while read sym; do demangled=$(c++filt $sym) case $demangled in -- 1.7.5.4