summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-04-05 11:23:36 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-04-05 11:23:36 +0000
commit4318fbda2a7ee51caafdc4eb1f8028a3f0605142 (patch)
treecddb50a81d7d1a628cc400519162080c6d87868e /Makefile
parent36ea5120664550fae6d31f1c6f695e4f8975cb06 (diff)
o Merge with Linux 2.1.91.
o First round of bugfixes for the SC/MC CPUs. o FPU context switch fixes. o Lazy context switches. o Faster syscalls. o Removed dead code. o Shitloads of other things I forgot ...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 5a2892a78..9cb9a3900 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
VERSION = 2
PATCHLEVEL = 1
-SUBLEVEL = 90
+SUBLEVEL = 91
ARCH = mips
@@ -249,11 +249,10 @@ newversion:
fi
include/linux/compile.h: $(CONFIGURATION) include/linux/version.h newversion
- @if [ -f .name ]; then \
- echo \#define UTS_VERSION \"\#`cat .version`-`cat .name` `date`\"; \
- else \
- echo \#define UTS_VERSION \"\#`cat .version` `date`\"; \
- fi >> .ver
+ @echo -n \#define UTS_VERSION \"\#`cat .version` > .ver
+ @if [ -n "$(SMP)" ] ; then echo -n " SMP" >> .ver; fi
+ @if [ -f .name ]; then echo -n \-`cat .name` >> .ver; fi
+ @echo ' '`date`'"' >> .ver
@echo \#define LINUX_COMPILE_TIME \"`date +%T`\" >> .ver
@echo \#define LINUX_COMPILE_BY \"`whoami`\" >> .ver
@echo \#define LINUX_COMPILE_HOST \"`hostname`\" >> .ver