From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg KH Date: Tue, 03 Feb 2004 22:46:44 +0000 Subject: Re: [ANNOUNCE] udev 016 release Message-Id: <20040203224644.GC21562@kroah.com> List-Id: References: <20040203201359.GB19476@kroah.com> In-Reply-To: <20040203201359.GB19476@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org On Tue, Feb 03, 2004 at 02:23:56PM -0800, Eric Sandall wrote: > Now it fails with `make -jN` where N > 1, whereas the last two worked fine, but > then the one before that was broken as well, and off and on (though I failed to > report it, then). I'm not canny enough with Makefiles yet to fix this, but I > will look into it and see if I can gander what's going wrong. > > Here's the error from using multiple make jobs: Ah, this patch should fix it. Let me know if it doesn't. Sorry about that. greg k-h # fix up Makefile dependancies for udev_version.h diff -Nru a/Makefile b/Makefile --- a/Makefile Tue Feb 3 14:46:19 2004 +++ b/Makefile Tue Feb 3 14:46:19 2004 @@ -259,15 +259,15 @@ $(LD) $(LDFLAGS) -o $@ $(CRT0) udev.o $(OBJS) $(LIB_OBJS) $(ARCH_LIB_OBJS) $(STRIPCMD) $@ -$(HELPER): udevinfo.o $(OBJS) $(HEADERS) +$(HELPER): $(HEADERS) udevinfo.o $(OBJS) $(LD) $(LDFLAGS) -o $@ $(CRT0) udevinfo.o udev_config.o udevdb.o $(SYSFS) $(TDB) $(LIB_OBJS) $(ARCH_LIB_OBJS) $(STRIPCMD) $@ -$(DAEMON): udevd.h udevd.o +$(DAEMON): udevd.h $(GEN_HEADERS) udevd.o $(LD) $(LDFLAGS) -lpthread -o $@ $(CRT0) udevd.o $(LIB_OBJS) $(ARCH_LIB_OBJS) $(STRIPCMD) $@ -$(SENDER): udevd.h udevsend.o +$(SENDER): udevd.h $(GEN_HEADERS) udevsend.o $(LD) $(LDFLAGS) -o $@ $(CRT0) udevsend.o $(LIB_OBJS) $(ARCH_LIB_OBJS) $(STRIPCMD) $@ ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net Linux-hotplug-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel