aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-09-23 06:30:31 -0400
committerW. Trevor King <wking@drexel.edu>2009-09-23 06:30:31 -0400
commit73bc42e2641a45147e5b4accd63079fa8eb1d09e (patch)
treec3a570a0aac16f813726cdc874d7a2f69fe6a595 /Makefile
parente174881e3e39fbffa75aa0a1f858998827ad204c (diff)
downloadbugseverywhere-73bc42e2641a45147e5b4accd63079fa8eb1d09e.tar.gz
Convert incoming text/* email payloads to unicode in be-handle-mail.
Switched from cStringIO to StringIO in be-handle-mail because: (from http://docs.python.org/library/stringio.html) "Unlike the memory files implemented by the StringIO module, those provided by this [cStringIO] module are not able to accept Unicode strings that cannot be encoded as plain ASCII strings." I'm not sure what all the fuss with sys.__stdin__ had been about in Command.run(), but I took it out and everything still seems to work ;). Also fix Makefail (again!) to install under $HOME by default.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 61f67c8..fe482c3 100644
--- a/Makefile
+++ b/Makefile
@@ -38,8 +38,8 @@ MODULES += ${DOC_DIR}
RM = rm
-PREFIX = /usr/local
-#PREFIX = ${HOME}
+#PREFIX = /usr/local
+PREFIX = ${HOME}
INSTALL_OPTIONS = "--prefix=${PREFIX}"