]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Script for extracting the exported symbols of an object file.
authorBruno Haible <bruno@clisp.org>
Thu, 19 Oct 2006 12:00:42 +0000 (12:00 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:10 +0000 (12:14 +0200)
gettext-tools/libgettextpo/exported.sh.in [new file with mode: 0644]

diff --git a/gettext-tools/libgettextpo/exported.sh.in b/gettext-tools/libgettextpo/exported.sh.in
new file mode 100644 (file)
index 0000000..75c703a
--- /dev/null
@@ -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