#11966 closed defect (fixed)
mzscheme doesn't have the correct collects directory
Reported by: | wlynch@… | Owned by: | kballard (Lily Ballard) |
---|---|---|---|
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 (2)
comment:1 Changed 18 years ago by kballard (Lily Ballard)
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Ok, committed in r25211