diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-06-11 20:23:29 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-06-11 20:23:29 (GMT) |
commit | 4fbb080bc16de9f37a84d517e84bae5dbe12fc8e (patch) | |
tree | 9d8b2abca1baf7909200a4083ff0808a57dcec1b | |
parent | e0cfb16f991b55fbfadd7d07233911b8ff54709f (diff) | |
download | cpython-4fbb080bc16de9f37a84d517e84bae5dbe12fc8e.zip cpython-4fbb080bc16de9f37a84d517e84bae5dbe12fc8e.tar.gz cpython-4fbb080bc16de9f37a84d517e84bae5dbe12fc8e.tar.bz2 |
Use configure to substitute the correct prefix instead of hardcoding
-rw-r--r-- | Mac/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Makefile.in b/Mac/Makefile.in index 82514b2..11f1438 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -5,7 +5,7 @@ VERSION=@VERSION@ builddir = .. srcdir=@srcdir@ -prefix=/Library/Frameworks/Python.framework/Versions/$(VERSION) +prefix=@prefix@ LIBDEST=$(prefix)/lib/python$(VERSION) RUNSHARED=@RUNSHARED@ BUILDEXE=@BUILDEXEEXT@ |