From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932154AbcEYOYY (ORCPT ); Wed, 25 May 2016 10:24:24 -0400 Received: from mail.eskimo.com ([204.122.16.4]:44463 "EHLO mail.eskimo.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752944AbcEYOYW (ORCPT ); Wed, 25 May 2016 10:24:22 -0400 X-Greylist: delayed 595 seconds by postgrey-1.27 at vger.kernel.org; Wed, 25 May 2016 10:24:22 EDT From: scs@eskimo.com (Steve Summit) Date: Wed, 25 May 2016 10:14:19 -0400 Message-ID: <2016May25.1014.scs.0004@eskimo.com> To: linux-kernel@vger.kernel.org Subject: minor patch to lib/raid6/Makefile MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="2016May25.1014.scs.0003" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --2016May25.1014.scs.0003 Content-Type: text/plain; charset=US-ASCII Content-ID: <2016May25.1014.scs.0006@eskimo.com> I've been doing some cross-compilation on my Mac, and one of the little hiccups is that lib/raid6 won't build due to a small command-line incompatibility between GNU awk and the one that comes with MacOS. Patch attached. (I have nothing like commit access; I'm hoping someone else can apply this.) --2016May25.1014.scs.0003 Content-Type: text/plain; charset=US-ASCII; name="lib_raid6_Makefile.patch" Content-Transfer-Encoding: Quoted-Printable Content-Disposition: attachment; filename="lib_raid6_Makefile.patch" Content-ID: <2016May25.1014.scs.0008@eskimo.com> --- Makefile.orig 2012-11-26 16:40:34.000000000 -0500 +++ Makefile 2016-03-22 08:33:28.000000000 -0400 @@ -6,7 +6,7 @@ hostprogs-y +=3D mktables = quiet_cmd_unroll =3D UNROLL $@ - cmd_unroll =3D $(AWK) -f$(srctree)/$(src)/unroll.awk -vN=3D$(UNROL= L) \ + cmd_unroll =3D $(AWK) -f $(srctree)/$(src)/unroll.awk -v N=3D$(UNR= OLL) \ < $< > $@ || ( rm -f $@ && exit 1 ) = ifeq ($(CONFIG_ALTIVEC),y) --2016May25.1014.scs.0003--