diff options
author | Oliver Braun <obraun@FreeBSD.org> | 2002-08-21 15:28:54 +0000 |
---|---|---|
committer | Oliver Braun <obraun@FreeBSD.org> | 2002-08-21 15:28:54 +0000 |
commit | 10f5251cfe656e3ce1bde19507f1c80a58dcbd8f (patch) | |
tree | 58a31b8b5ed17c33436d63216c364568faac3195 /devel/hs-hat/files/patch-script::harch | |
parent | I guess something changed in ports/Mk so that BINOWN, BINGRP, and (diff) |
Change MAINTAINER to my FreeBSD address.
Do not allow building with ghc-5.04 due to errors.
Add patch to fix build on bento.
PR: ports/40828
Approved by: dwcjr (mentor)
Notes
Notes:
svn path=/head/; revision=64757
Diffstat (limited to 'devel/hs-hat/files/patch-script::harch')
-rw-r--r-- | devel/hs-hat/files/patch-script::harch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/hs-hat/files/patch-script::harch b/devel/hs-hat/files/patch-script::harch new file mode 100644 index 000000000000..df33c71c6959 --- /dev/null +++ b/devel/hs-hat/files/patch-script::harch @@ -0,0 +1,13 @@ +--- script/harch.orig Mon May 27 10:30:55 2002 ++++ script/harch Mon May 27 10:31:11 2002 +@@ -13,8 +13,8 @@ + + if uname >/dev/null 2>&1 + then +- if uname -p >/dev/null 2>&1 +- then PROCESSOR=`uname -p` ++ if uname -m >/dev/null 2>&1 ++ then PROCESSOR=`uname -m` + case "$PROCESSOR" in + unknown|*\ *) + PROCESSOR=`uname -m` |