mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 09:32:14 +02:00
This patch includes the update of patch upstream status of the following recipes (50 in all): grub pciutils setserial dhcp iproute2 libnss-mdns nfs-utils openssl portmap busybox coreutils dbus dropbear ncurses readline sysfsutils sysvinit tinylogin udev update-rc.d util-linux elfutils file pkgconfig syslinux ubootchart yaffs2 findutils gamin hdparm libaio libzypp parted procps sat-solver screen sed sysklogd tcp-wrapper time zypper attr boost createrepo gnutls hal js libgcrypt libnl libusb-compat (From OE-Core rev: 1e6f767663b7d5fb6277fd2b214f4a50e24d4ffd) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
925 B
Diff
33 lines
925 B
Diff
Upstream-Status: Pending
|
|
|
|
12/03/2010
|
|
|
|
add explicit rules for header files generated by lex and yacc,
|
|
otherwise the build of lib/route/pktloc.c may fail in a parallel
|
|
environment.
|
|
|
|
Signed-off-by: Qing He <qing.he@intel.com>
|
|
|
|
12/06/2010
|
|
|
|
the dependency rule should really read pktloc.lo instead of
|
|
pktloc.$(OBJEXT), since it's in a libtool setup.
|
|
|
|
Signed-off-by: Qing He <qing.he@intel.com>
|
|
|
|
diff --git a/lib/Makefile.am b/lib/Makefile.am
|
|
index 92a916e..e8b8ef3 100644
|
|
--- a/lib/Makefile.am
|
|
+++ b/lib/Makefile.am
|
|
@@ -35,6 +35,10 @@ route/pktloc_grammar.c: route/pktloc_grammar.l
|
|
route/pktloc_syntax.c: route/pktloc_syntax.y
|
|
$(YACC) -d $(YFLAGS) -o $@ $^
|
|
|
|
+route/pktloc.lo: route/pktloc_syntax.h route/pktloc_grammar.h
|
|
+route/pktloc_syntax.h: route/pktloc_syntax.c
|
|
+route/pktloc_grammar.h: route/pktloc_grammar.c
|
|
+
|
|
libnl_route_la_LDFLAGS = -version-info 2:0:0
|
|
libnl_route_la_LIBADD = libnl.la
|
|
libnl_route_la_SOURCES = \
|