summaryrefslogtreecommitdiff
path: root/package/krb5/patches/patch-src_util_export-check_pl
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-08-02 01:55:57 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-08-02 01:55:57 +0200
commitd628ef61770142a2a2f9271c17803b47bc13d524 (patch)
tree3f9b7396fb5e090baaad82790e00e9945163e528 /package/krb5/patches/patch-src_util_export-check_pl
parent2ef5e2d8c0aeac49b2888d6bbefadf30d3964907 (diff)
use GNU nm from toolchain (second part)
Diffstat (limited to 'package/krb5/patches/patch-src_util_export-check_pl')
-rw-r--r--package/krb5/patches/patch-src_util_export-check_pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/krb5/patches/patch-src_util_export-check_pl b/package/krb5/patches/patch-src_util_export-check_pl
new file mode 100644
index 000000000..04d21a299
--- /dev/null
+++ b/package/krb5/patches/patch-src_util_export-check_pl
@@ -0,0 +1,11 @@
+--- krb5-1.8.1.orig/src/util/export-check.pl Sun Aug 1 18:36:11 2010
++++ krb5-1.8.1/src/util/export-check.pl Sun Aug 1 18:27:23 2010
+@@ -38,7 +38,7 @@ if ($#ARGV != 1) {
+ my($exfile, $libfile) = @ARGV;
+
+ @missing = ();
+-open NM, "nm -Dg --defined-only $libfile |" || die "can't run nm on $libfile: $!";
++open NM, "@@NM@@ -Dg --defined-only $libfile |" || die "can't run nm on $libfile: $!";
+ open EXPORT, "< $exfile" || die "can't read $exfile: $!";
+
+ @export = <EXPORT>;