public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] 2.4.3-pre1 dependencies are broken
@ 2001-03-03 18:16 Andrew Morton
  2001-03-03 23:08 ` Keith Owens
  0 siblings, 1 reply; 2+ messages in thread
From: Andrew Morton @ 2001-03-03 18:16 UTC (permalink / raw)
  To: lkml

mkdep has got itself a new feature, but the makefiles haven't
been updated.

We're getting zero-length .depend files.

I assume something like this was intended:



--- linux-2.4.3-pre1/Makefile	Sat Mar  3 20:52:23 2001
+++ linux-akpm/Makefile	Sun Mar  4 05:13:01 2001
@@ -440,8 +440,8 @@
 	find . -type f -print | sort | xargs sum > .SUMS
 
 dep-files: scripts/mkdep archdep include/linux/version.h
-	scripts/mkdep init/*.c > .depend
-	scripts/mkdep `find $(FINDHPATH) -name SCCS -prune -o -follow -name \*.h ! -name modversions.h -print` > .hdepend
+	scripts/mkdep -- init/*.c > .depend
+	scripts/mkdep -- `find $(FINDHPATH) -name SCCS -prune -o -follow -name \*.h ! -name modversions.h -print` > .hdepend
 	$(MAKE) $(patsubst %,_sfdep_%,$(SUBDIRS)) _FASTDEP_ALL_SUB_DIRS="$(SUBDIRS)"
 ifdef CONFIG_MODVERSIONS
 	$(MAKE) update-modverfile
--- linux-2.4.3-pre1/Rules.make	Sat Dec 30 09:07:19 2000
+++ linux-akpm/Rules.make	Sun Mar  4 05:11:25 2001
@@ -123,7 +123,7 @@
 # This make dependencies quickly
 #
 fastdep: dummy
-	$(TOPDIR)/scripts/mkdep $(wildcard *.[chS] local.h.master) > .depend
+	$(TOPDIR)/scripts/mkdep -- $(wildcard *.[chS] local.h.master) > .depend
 ifdef ALL_SUB_DIRS
 	$(MAKE) $(patsubst %,_sfdep_%,$(ALL_SUB_DIRS)) _FASTDEP_ALL_SUB_DIRS="$(ALL_SUB_DIRS)"
 endif

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2001-03-03 23:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-03-03 18:16 [patch] 2.4.3-pre1 dependencies are broken Andrew Morton
2001-03-03 23:08 ` Keith Owens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox