]> Zhao Yanbai Git Server - minix.git/commitdiff
Raised version to 3.0.2 in config.h
authorBen Gras <ben@minix3.org>
Tue, 3 May 2005 15:39:41 +0000 (15:39 +0000)
committerBen Gras <ben@minix3.org>
Tue, 3 May 2005 15:39:41 +0000 (15:39 +0000)
Told the Makefile not to panic if creating /usr/include due to it existing
(due to bin not being allowed to create it) fails, this smoothens installs
done by bin (instead of root).

include/Makefile
include/minix/config.h

index efb8c088c9505c2e1dfc56d84d4b0d95f56b3b65..4bf2f3ee954e53c51a7772478c1509fdaeee914b 100644 (file)
@@ -7,5 +7,5 @@ clean::
 
 install::
        -rm -rf $(INC)
-       mkdir $(INC)
+       mkdir -p $(INC)
        tar cf - `find . -name '*.h'` | (cd $(INC) && tar xf -)
index a8f4206207aedb031de47c959101b6f279d94c6a..f4f73b55e5136e0d284d8bc3026b27ca6497d536 100755 (executable)
@@ -2,10 +2,10 @@
 #define _CONFIG_H
 
 /* Minix release and version numbers. */
-#define OS_RELEASE "3"         
-#define OS_VERSION "0.1"
+#define OS_RELEASE "3"
+#define OS_VERSION "0.2"
 
-/* This file sets configuration parameters for the MINIX kernel, FS, and MM.
+/* This file sets configuration parameters for the MINIX kernel, FS, and PM.
  * It is divided up into two main sections.  The first section contains
  * user-settable parameters.  In the second section, various internal system
  * parameters are set based on the user-settable parameters.