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).
This commit is contained in:
parent
27b7e7c72e
commit
6b500b03a6
2 changed files with 4 additions and 4 deletions
|
@ -7,5 +7,5 @@ clean::
|
||||||
|
|
||||||
install::
|
install::
|
||||||
-rm -rf $(INC)
|
-rm -rf $(INC)
|
||||||
mkdir $(INC)
|
mkdir -p $(INC)
|
||||||
tar cf - `find . -name '*.h'` | (cd $(INC) && tar xf -)
|
tar cf - `find . -name '*.h'` | (cd $(INC) && tar xf -)
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
|
|
||||||
/* Minix release and version numbers. */
|
/* Minix release and version numbers. */
|
||||||
#define OS_RELEASE "3"
|
#define OS_RELEASE "3"
|
||||||
#define OS_VERSION "0.1"
|
#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
|
* It is divided up into two main sections. The first section contains
|
||||||
* user-settable parameters. In the second section, various internal system
|
* user-settable parameters. In the second section, various internal system
|
||||||
* parameters are set based on the user-settable parameters.
|
* parameters are set based on the user-settable parameters.
|
||||||
|
|
Loading…
Reference in a new issue