Update of /cvsroot/linux-vax/kernel-2.5/arch/vax
In directory sc8-pr-cvs1:/tmp/cvs-serv8873/arch/vax
Modified Files:
Makefile
Log Message:
Fix multiple definitions of symbols that were covered up by us not
using GCC's -fno-common option
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Makefile 23 Jan 2003 23:30:35 -0000 1.8
+++ Makefile 24 Jan 2003 00:28:31 -0000 1.9
@@ -18,11 +18,8 @@
# Note that this CFLAGS definition will override the definition
-# in the top-level Makefile. We want -O1, not -O2
+# in the top-level Makefile. We want -O1, not -O2.
CFLAGS := $(subst -O2,-O1,$(CFLAGS) )
-
-# And for some reason, init/init.o won't link with -fno-common set
-CFLAGS := $(subst -fno-common,,$(CFLAGS) )
# These flags are used by the top-level makefile when linking
|