From: Bruno Haible Date: Thu, 19 Oct 2006 12:00:42 +0000 (+0000) Subject: Script for extracting the exported symbols of an object file. X-Git-Tag: 0.16.x-branchpoint~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67de0aad23c1c416ad4ac680f060040a162bc9b0;p=thirdparty%2Fgettext.git Script for extracting the exported symbols of an object file. --- diff --git a/gettext-tools/libgettextpo/exported.sh.in b/gettext-tools/libgettextpo/exported.sh.in new file mode 100644 index 000000000..75c703a77 --- /dev/null +++ b/gettext-tools/libgettextpo/exported.sh.in @@ -0,0 +1,25 @@ +#! /bin/sh +# +# Copyright (C) 2006 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# + +# This is a script that determines the exported symbols of an object file. +# This is a separate script because $(GLOBAL_SYMBOL_PIPE) cannot be used in a +# Makefile, since it may contain dollar signs. + +nm_cmd="@NM@ $1 | @GLOBAL_SYMBOL_PIPE@" +eval $nm_cmd