pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/shells/bash2 The Makefile for builtins is not using CF...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9a15e59b9409
branches:  trunk
changeset: 475519:9a15e59b9409
user:      jschauma <jschauma%pkgsrc.org@localhost>
date:      Mon May 17 22:29:30 2004 +0000

description:
The Makefile for builtins is not using CFLAGS, but we do need CFLAGS
(for example under IRIX64 using gcc, where it otherwise will produce
32bit object files).  Patch that.

diffstat:

 shells/bash2/distinfo         |   3 ++-
 shells/bash2/patches/patch-ag |  13 +++++++++++++
 2 files changed, 15 insertions(+), 1 deletions(-)

diffs (31 lines):

diff -r 0adaa44ef085 -r 9a15e59b9409 shells/bash2/distinfo
--- a/shells/bash2/distinfo     Mon May 17 21:54:49 2004 +0000
+++ b/shells/bash2/distinfo     Mon May 17 22:29:30 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2004/05/12 20:56:14 jschauma Exp $
+$NetBSD: distinfo,v 1.12 2004/05/17 22:29:30 jschauma Exp $
 
 SHA1 (bash-2.05b.tar.gz) = b3e158877f94e66ec1c8ef604e994851ee388b09
 Size (bash-2.05b.tar.gz) = 1956216 bytes
@@ -22,3 +22,4 @@
 SHA1 (patch-ad) = 412b45000cbd26e5dbacb4c414351c70d73ae62f
 SHA1 (patch-ae) = c0e5564d5e57a04d8458e67fb391df0d890e6f38
 SHA1 (patch-af) = 7f9cca6100fa6b24c1fb0d30958b2743679e46ee
+SHA1 (patch-ag) = 0baab486f57f6f4eaedc376223aecde0e6dd5c0f
diff -r 0adaa44ef085 -r 9a15e59b9409 shells/bash2/patches/patch-ag
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/shells/bash2/patches/patch-ag     Mon May 17 22:29:30 2004 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ag,v 1.1 2004/05/17 22:29:30 jschauma Exp $
+
+--- builtins/Makefile.in.orig  Sun May 16 22:52:52 2004
++++ builtins/Makefile.in       Sun May 16 22:53:31 2004
+@@ -20,7 +20,7 @@
+ SHELL = @MAKE_SHELL@
+ RANLIB = @RANLIB@
+ CC = @CC@
+-CC_FOR_BUILD = @CC_FOR_BUILD@
++CC_FOR_BUILD = @CC_FOR_BUILD@ @CFLAGS@
+ AR = @AR@
+ ARFLAGS = @ARFLAGS@
+ RM = rm -f



Home | Main Index | Thread Index | Old Index