gnupg: added a release script to build and install gnupg.
[msysgit.git] / src / gnupg / patches / 0001-Support-case-insensitive-filenames-for-assembler-pro.patch
blob2cdaab9e799e77937043e25306ddbe392739c542
1 From 3d7333df34b22b394ac6ff3253cbf9d311285558 Mon Sep 17 00:00:00 2001
2 From: Pat Thoyts <patthoyts@users.sourceforge.net>
3 Date: Sat, 2 Feb 2013 00:08:12 +0000
4 Subject: [PATCH] Support case-insensitive filenames for assembler processing
6 Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
7 ---
8 mpi/Makefile.in | 4 ++--
9 1 file changed, 2 insertions(+), 2 deletions(-)
11 diff --git a/mpi/Makefile.in b/mpi/Makefile.in
12 index 54392c7..603fd11 100644
13 --- a/mpi/Makefile.in
14 +++ b/mpi/Makefile.in
15 @@ -641,8 +641,8 @@ uninstall-am:
16 # cancel the default rules used by libtool which do not really
17 # work and add one to cpp .S files
18 .S.o:
19 - $(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' > _$*.s
20 - $(COMPILE) $(AM_CCASFLAGS) -c _$*.s
21 + $(CPP) -x assembler-with-cpp $(INCLUDES) $(DEFS) $< | grep -v '^#' > _$*.asm
22 + $(COMPILE) -x assembler $(AM_CCASFLAGS) -c _$*.asm
23 mv -f _$*.o $*.o
25 .S.lo:
26 --
27 1.8.1.msysgit.1