Ticket #11966 (closed defect: fixed)
mzscheme doesn't have the correct collects directory
| Reported by: | wlynch@… | Owned by: | eridius@… |
|---|---|---|---|
| Priority: | High | Milestone: | |
| Component: | ports | Version: | |
| Keywords: | Cc: | ||
| Port: |
Description
The collects directory should point to $PREFIX/share/mzscheme, but it points to $PREFIX/share/mzscheme/360 (which is empty). This means that we can't use nice things like readline and what not.. Here's a patch to fix it.
--- Portfile.old 2007-05-15 14:58:52.000000000 -0400
+++ Portfile.new 2007-05-15 21:18:43.000000000 -0400
@@ -64,5 +64,5 @@
${destroot}${prefix}/lib/libmzscheme.${version}.dylib
cd ${destroot}${prefix}/share/mzscheme/${version}
- ln -s . collects
+ ln -s .. collects
}
I'm assigning it to eridus (sorry if you don't want it) because you committed the last patch. Hopefully this will finish getting mzscheme up to speed. Thanks.
Change History
Note: See
TracTickets for help on using
tickets.


Ok, committed in r25211