summaryrefslogtreecommitdiff
path: root/lang/ghc
diff options
context:
space:
mode:
authorkristerw <kristerw@pkgsrc.org>2004-01-03 09:40:26 +0000
committerkristerw <kristerw@pkgsrc.org>2004-01-03 09:40:26 +0000
commita56602c899d5ca612a3f93af27fc5dffb2be3ee6 (patch)
tree2aaa0e44a2d60025d58a6769dbaea34c0e4b08c0 /lang/ghc
parent97fabad2ff9c1e574d398aabf1bb17a627d66e4a (diff)
downloadpkgsrc-a56602c899d5ca612a3f93af27fc5dffb2be3ee6.tar.gz
Fix a multi-line sting.
Diffstat (limited to 'lang/ghc')
-rw-r--r--lang/ghc/distinfo3
-rw-r--r--lang/ghc/patches/patch-as15
2 files changed, 17 insertions, 1 deletions
diff --git a/lang/ghc/distinfo b/lang/ghc/distinfo
index 528473fa979..b01b2f05654 100644
--- a/lang/ghc/distinfo
+++ b/lang/ghc/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.4 2003/12/31 18:37:21 kristerw Exp $
+$NetBSD: distinfo,v 1.5 2004/01/03 09:40:26 kristerw Exp $
SHA1 (ghc-5.04.3-src.tar.bz2) = 9b0f17e871557a76140fbf738138e1cf5d356e9d
Size (ghc-5.04.3-src.tar.bz2) = 4741512 bytes
@@ -22,3 +22,4 @@ SHA1 (patch-ao) = 8c2eb4ac6701d33a04e9e1f6e8097815080fecd1
SHA1 (patch-ap) = bd502c0d6957b6df6cd3d14b6b169d6a8edb46c6
SHA1 (patch-aq) = e4d71497a95923a069c3f8032359182c5705f3eb
SHA1 (patch-ar) = 62a6db03a20a80be7c6b113cae5079de75c9665c
+SHA1 (patch-as) = 865a04de68667215ada3e0f27bdc18b8218178d7
diff --git a/lang/ghc/patches/patch-as b/lang/ghc/patches/patch-as
new file mode 100644
index 00000000000..79b435e979b
--- /dev/null
+++ b/lang/ghc/patches/patch-as
@@ -0,0 +1,15 @@
+$NetBSD: patch-as,v 1.1 2004/01/03 09:41:08 kristerw Exp $
+
+--- ghc/utils/prof/cgprof/cgprof.c.orig 2004-01-03 03:49:33.000000000 +0100
++++ ghc/utils/prof/cgprof/cgprof.c 2004-01-03 03:50:55.000000000 +0100
+@@ -1183,8 +1183,8 @@
+ } /* end of new for loop */
+
+ *nonodes = symbol_table_next;
+- fprintf(log,"%s: read %d lines from profile.Graph contains %i nodes.
+- \n",Pgm,nolines,symbol_table_next);
++ fprintf(log,"%s: read %d lines from profile.Graph contains %i nodes.\n"
++ ,Pgm,nolines,symbol_table_next);
+
+ free_cc_matrix(cc_m); /* be nice and clean up the cost centre matrix */
+ }