~ chicken-core (master) 30486394496133da3bd72c5f7d117b7af058864f
commit 30486394496133da3bd72c5f7d117b7af058864f
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Tue Feb 8 15:39:53 2011 +0100
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Tue Feb 8 15:39:53 2011 +0100
install manual css correctly
diff --git a/distribution/manifest b/distribution/manifest
index 6e55200c..4378284d 100644
--- a/distribution/manifest
+++ b/distribution/manifest
@@ -314,3 +314,4 @@ manual-html/Using the interpreter.html
manual-html/faq.html
manual-html/chicken.png
manual-html/index.html
+manual-html/manual.css
diff --git a/chicken.css b/manual.css
similarity index 100%
rename from chicken.css
rename to manual.css
diff --git a/manual/faq b/manual/faq
index ca4178e4..5053951b 100644
--- a/manual/faq
+++ b/manual/faq
@@ -100,10 +100,6 @@ every object has to be accessed via a thread synchronization
protocol. Such a design would make native threads in Chicken
essentially equivalent to Unix processes and shared memory.
-For a different approach to concurrency, please see the
-[[http://www.call-with-current-continuation.org/eggs/3/mpi.html|mpi]]
-egg.
-
==== Does CHICKEN support Unicode strings?
The system does not directly support Unicode, but an extension for UTF8 strings
diff --git a/rules.make b/rules.make
index fba1cb61..2f4e9f25 100644
--- a/rules.make
+++ b/rules.make
@@ -576,6 +576,7 @@ html:
$(MAKEDIR_COMMAND) $(MAKEDIR_COMMAND_OPTIONS) $(SRCDIR)manual-html
manual-labor $(SRCDIR)manual $(SRCDIR)manual-html
$(COPY_COMMAND) $(SRCDIR)chicken.png manual-html
+ $(COPY_COMMAND) $(SRCDIR)manual.css manual-html
$(COPY_COMMAND) $(SRCDIR)index.html manual-html
# cleaning up
Trap