From: Eric Sandall <eric@sandall.us>
To: linux-hotplug@vger.kernel.org
Subject: Re: [ANNOUNCE] udev 016 release
Date: Tue, 03 Feb 2004 23:33:15 +0000 [thread overview]
Message-ID: <1075851195.40202fbb587cc@horde.sandall.us> (raw)
In-Reply-To: <20040203201359.GB19476@kroah.com>
Quoting Greg KH <greg@kroah.com>:
> 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) $@
Fails with `patch -p1 < Makefile.patch` in udev-016 source directory:
# patch -p1 < /tmp/makefile.patch
sh: line 1: get: command not found
warning: Patching file Makefile, which does not match default SCCS version
patching file Makefile
Hunk #1 FAILED at 259.
1 out of 1 hunk FAILED -- saving rejects to file Makefile.rej
# cat Makefile.rej
***************
*** 259,273 ****
$(LD) $(LDFLAGS) -o $@ $(CRT0) udev.o $(OBJS) $(LIB_OBJS)
$(ARCH_LIB_OBJS)
$(STRIPCMD) $@
- $(HELPER): udevinfo.o $(OBJS) $(HEADERS)
$(LD) $(LDFLAGS) -o $@ $(CRT0) udevinfo.o udev_config.o udevdb.o
$(SYSFS) $(TDB) $(LIB_OBJS) $(ARCH_LIB_OBJS)
$(STRIPCMD) $@
- $(DAEMON): udevd.h udevd.o
$(LD) $(LDFLAGS) -lpthread -o $@ $(CRT0) udevd.o $(LIB_OBJS)
$(ARCH_LIB_OBJS)
$(STRIPCMD) $@
- $(SENDER): udevd.h udevsend.o
$(LD) $(LDFLAGS) -o $@ $(CRT0) udevsend.o $(LIB_OBJS)
$(ARCH_LIB_OBJS)
$(STRIPCMD) $@
--- 259,273 ----
$(LD) $(LDFLAGS) -o $@ $(CRT0) udev.o $(OBJS) $(LIB_OBJS)
$(ARCH_LIB_OBJS)
$(STRIPCMD) $@
+ $(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 $(GEN_HEADERS) udevd.o
$(LD) $(LDFLAGS) -lpthread -o $@ $(CRT0) udevd.o $(LIB_OBJS)
$(ARCH_LIB_OBJS)
$(STRIPCMD) $@
+ $(SENDER): udevd.h $(GEN_HEADERS) udevsend.o
$(LD) $(LDFLAGS) -o $@ $(CRT0) udevsend.o $(LIB_OBJS)
$(ARCH_LIB_OBJS)
$(STRIPCMD) $@
--
PGP Key Fingerprint: FCFF 26A1 BE21 08F4 BB91 FAED 1D7B 7D74 A8EF DD61
http://search.keyserver.net:11371/pks/lookup?op=get&search=0xA8EFDD61
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GCS/E/IT$ d-- s++:+>: a-- C++(+++) BL++++VIS>$ P+(++) L+++ E-(---) W++ N+@ o?
K? w++++>-- O M-@ V-- PS+(+++) PE(-) Y++(+) PGP++(+) t+() 5++ X(+) R+(++)
tv(--)b++(+++) DI+@ D++(+++) G>+++ e>+++ h---(++) r++ y+
------END GEEK CODE BLOCK------
Eric Sandall | Source Mage GNU/Linux Developer
eric@sandall.us | http://www.sourcemage.org/
http://eric.sandall.us/ | SysAdmin @ Inst. Shock Physics @ WSU
http://counter.li.org/ #196285 | http://www.shock.wsu.edu/
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.
-------------------------------------------------------
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
next prev parent reply other threads:[~2004-02-03 23:33 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-02-03 20:13 [ANNOUNCE] udev 016 release Greg KH
2004-02-03 20:13 ` Greg KH
2004-02-03 20:49 ` Martin Schlemmer
2004-02-03 23:14 ` Greg KH
2004-02-03 23:14 ` Greg KH
2004-02-03 21:28 ` Martin Schlemmer
2004-02-03 23:03 ` Martin Schlemmer
2004-02-03 23:13 ` Greg KH
2004-02-03 23:13 ` Greg KH
2004-02-04 0:01 ` Kay Sievers
2004-02-04 0:01 ` Kay Sievers
2004-02-04 4:25 ` Martin Schlemmer
2004-02-08 11:27 ` Martin Schlemmer
2004-02-08 13:01 ` Martin Schlemmer
2004-02-03 21:30 ` Marco d'Itri
2004-02-03 21:43 ` Martin Schlemmer
2004-02-11 22:13 ` Greg KH
2004-02-11 22:13 ` Greg KH
2004-02-11 22:27 ` Martin Schlemmer
2004-02-12 1:19 ` Greg KH
2004-02-12 1:19 ` Greg KH
2004-02-03 22:23 ` Eric Sandall
2004-02-03 22:46 ` Greg KH
2004-02-03 23:33 ` Eric Sandall [this message]
2004-02-03 23:53 ` Greg KH
2004-02-04 0:35 ` Eric Sandall
2004-02-04 22:31 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1075851195.40202fbb587cc@horde.sandall.us \
--to=eric@sandall.us \
--cc=linux-hotplug@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.