From 6b500b03a628c56f7c0ee3e6bb5b43febf7eb528 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 3 May 2005 15:39:41 +0000 Subject: [PATCH] Raised version to 3.0.2 in config.h 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 | 2 +- include/minix/config.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/Makefile b/include/Makefile index efb8c088c..4bf2f3ee9 100644 --- a/include/Makefile +++ b/include/Makefile @@ -7,5 +7,5 @@ clean:: install:: -rm -rf $(INC) - mkdir $(INC) + mkdir -p $(INC) tar cf - `find . -name '*.h'` | (cd $(INC) && tar xf -) diff --git a/include/minix/config.h b/include/minix/config.h index a8f420620..f4f73b55e 100755 --- a/include/minix/config.h +++ b/include/minix/config.h @@ -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.