I originally picked "under" as the preposition to go before
a platform name, but obviously you should build "on" a
platform, and "under" suddenly annoys me. The choice of "on"
is now codified in the documentation style guide. Meanwhile,
"Unix" insted of "X" seems more clear and consistent in the
`racket/gui' docs.
More usefully, this patch also fixes a few out-of-date
platform-specific claims.
The fix is generate the names of the .zo files from the full file names of the .ss, not the file name trimmed of the .ss extension. Change is fairly trivial.
This is the error message:
> (sake "build.ss" 'all)
building collection name: (sake.ss)
make: checking zo
make: checking compiled/sake.zo
make: checking sake.ss
make: making compiled/sake.zo because compiled/sake.zo does not exist
[output to "compiled/sake_ss.zo"]
make: dependancy compiled/sake.zo was not made
=== context ===
for-loop
/usr/local/plt/collects/make/make-unit.ss:74:2: make-file
for-loop
core
/usr/local/plt/collects/scheme/private/misc.ss:74:7
--------------------------
This error basically says the file sake_ss.zo is being built, but make is looking for a file called sake.zo.
svn: r11500
file. (That is, it does not require the file to have a `name'
entry.)
* The name shown when setup works is the directory name, followed by
the `name' field from the info file when specified.
* This means that many `name's are no longer needed, so I'm removing
them. To see if you need a `name' entry, consider that the name
will be shown like this:
... foo (<your name here>)
This means that if the name is the same as the directory name, then
there is no point in having it. I also removed cases where the name
differed only in its capitalization for collections where the case
is obvious.
* Also, for subcollections, the name should clarify the name of the
subcollection in context. For example "Acknowledgments" explains
what scribbling/acks is, but there's no need to add the context name
as in "Scribblings: Acknowledgments".
* There may also be a point in keeping names for other uses. One such
example was in games, where the name field was used in the PLT Games
application. (This was changed to default on the directory name, so
it is no longer needed in most games.) Another example is in planet
packages.
svn: r8629