summaryrefslogtreecommitdiff
path: root/lang/ghc/patches
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/patches
parent97fabad2ff9c1e574d398aabf1bb17a627d66e4a (diff)
downloadpkgsrc-a56602c899d5ca612a3f93af27fc5dffb2be3ee6.tar.gz
Fix a multi-line sting.
Diffstat (limited to 'lang/ghc/patches')
-rw-r--r--lang/ghc/patches/patch-as15
1 files changed, 15 insertions, 0 deletions
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 */
+ }