From: Russ Allbery Date: Tue, 5 Jun 2007 03:57:45 +0000 (+0000) Subject: * Apply upstream patch from Jeffrey Hutzelman to fix kernel module X-Git-Tag: debian/1.4.4.dfsg1-4~7 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=2ef3a291a307bcd83058b3938a27f39740dcc184;p=packages%2Fo%2Fopenafs.git * Apply upstream patch from Jeffrey Hutzelman to fix kernel module builds on ppc64. (Closes: #427555) --- diff --git a/debian/changelog b/debian/changelog index bb5a51e90..c4fa93bab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,12 @@ openafs (1.4.4.dfsg1-4) UNRELEASED; urgency=low + * Apply upstream patch from Jeffrey Hutzelman to fix kernel module + builds on ppc64. (Closes: #427555) * Go back to using krb5-config. The dependency problem has now been fixed on all platforms in the krb5 package and this is the preferred upstream method. - -- Russ Allbery Sat, 19 May 2007 22:01:00 -0700 + -- Russ Allbery Mon, 04 Jun 2007 20:59:15 -0700 openafs (1.4.4.dfsg1-3) unstable; urgency=low diff --git a/src/libafs/make_kbuild_makefile.pl b/src/libafs/make_kbuild_makefile.pl index ce046e172..dd10db1e3 100755 --- a/src/libafs/make_kbuild_makefile.pl +++ b/src/libafs/make_kbuild_makefile.pl @@ -79,7 +79,7 @@ if (! -d $KDIR) { foreach (@objects) { die "No source known for $_\n" unless exists $deps{$_}; if($deps{$_} =~ /\.s$/) { - ($src = $_) =~ s/\.o$/.s/; + ($src = $_) =~ s/\.o$/.S/; } else { ($src = $_) =~ s/\.o$/.c/; }