diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-10-18 15:47:23 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-10-18 15:47:23 -0700 |
commit | f46599dded26bad36be5a89bd26d5ea1a5ca95ab (patch) | |
tree | 283255fb493bd044113191b218c57aef8d227db6 /Makefile.in | |
parent | 5215628191e7994a69333813b582098bde9dc7c5 (diff) | |
download | mailman2-f46599dded26bad36be5a89bd26d5ea1a5ca95ab.tar.gz mailman2-f46599dded26bad36be5a89bd26d5ea1a5ca95ab.tar.xz mailman2-f46599dded26bad36be5a89bd26d5ea1a5ca95ab.zip |
Fixed Makefile to not include $DESTDIR in paths compiled into .pyc
files for traceback purposes. (LP: #1241770)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 40e04f56..b70f0134 100644 --- a/Makefile.in +++ b/Makefile.in @@ -124,7 +124,7 @@ doinstall: $(SUBDIRS) do \ (cd $$d; $(MAKE) DESTDIR=$(DESTDIR) install); \ done - $(PYTHON) -c 'from compileall import *; compile_dir("$(DESTDIR)$(prefix)/Mailman")' + $(PYTHON) -c 'from compileall import *; compile_dir("$(DESTDIR)$(prefix)/Mailman", ddir="$(prefix)/Mailman")' # Only run bin/update if we aren't installing in DESTDIR, as this # means there are probably no lists to deal with, and it wouldn't |