summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@nuclecu.unam.mx>1997-07-02 06:33:17 +0000
committerMiguel de Icaza <miguel@nuclecu.unam.mx>1997-07-02 06:33:17 +0000
commit9a29f42249e4ee73ad434e4dbdaaa28d759569c5 (patch)
tree012c30f441db0e9c678de704a3d714f52462f6dc /Makefile
parent6523f1a4aea31cc4823f5b80da3f18d407a7a19d (diff)
Solve circular dependencies.
I wonder why the SPARC does not have this problem: xx_init() in drivers/sgi calls misc_register, but misc_register is defined in the libraries that are linked before drivers/sgi/sgi.a. I use --start-group and --end-group for now.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 007aa2aa7..a59812c75 100644
--- a/Makefile
+++ b/Makefile
@@ -151,7 +151,7 @@ DRIVERS := $(DRIVERS) drivers/sbus/sbus.a
endif
ifdef CONFIG_SGI
-DRIVERS := $(DRIVERS) drivers/sgi/sgi.a
+DRIVERS := --start-group $(DRIVERS) drivers/sgi/sgi.a --end-group
endif
include arch/$(ARCH)/Makefile