summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/hs-hmake/files/patch-script_confhc14
1 files changed, 14 insertions, 0 deletions
diff --git a/devel/hs-hmake/files/patch-script_confhc b/devel/hs-hmake/files/patch-script_confhc
new file mode 100644
index 000000000000..35a09961c4ec
--- /dev/null
+++ b/devel/hs-hmake/files/patch-script_confhc
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- script/confhc.orig
++++ script/confhc
+@@ -78,7 +78,7 @@
+ ghcsym () {
+ echo __GLASGOW_HASKELL__ >ghcsym.hs;
+ $1 -E -cpp -optP-P ghcsym.hs -o ghcsym.out;
+- grep -v '^#' ghcsym.out | grep -v '^$' > $2;
++ grep -v '^#' ghcsym.out | grep -v '^$' | grep -v '^{' > $2;
+ rm -f ghcsym.hs ghcsym.out;
+ }
+ echo -n " Looking for ghc... "