diff options
author | Richard Purdie <richard@openedhand.com> | 2008-04-14 22:06:29 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-04-14 22:06:29 +0000 |
commit | 0ba7ff12f8ce8438ca9df3991797bc4c28b630a2 (patch) | |
tree | b5cdf6a59d366d9b6a532ae5d89f665abfd14588 /meta/packages/networkmanager/files | |
parent | 52559473c9345b8498b100e7b109b26d9fd9d390 (diff) | |
download | openembedded-core-0ba7ff12f8ce8438ca9df3991797bc4c28b630a2.tar.gz openembedded-core-0ba7ff12f8ce8438ca9df3991797bc4c28b630a2.tar.bz2 openembedded-core-0ba7ff12f8ce8438ca9df3991797bc4c28b630a2.zip |
networkmanager: Fix broken makefile for libtool 2.2.2
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4252 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/networkmanager/files')
-rw-r--r-- | meta/packages/networkmanager/files/makefile-fix.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/packages/networkmanager/files/makefile-fix.patch b/meta/packages/networkmanager/files/makefile-fix.patch new file mode 100644 index 0000000000..5fbbf3a74a --- /dev/null +++ b/meta/packages/networkmanager/files/makefile-fix.patch @@ -0,0 +1,17 @@ +This line causes libtool to try and create a program which fails since there is no +main(). This is hidden with libtool 1.5.10 but appears with 2.2.2. + +RP - 14/4/08 + +Index: trunk/src/ppp-manager/Makefile.am +=================================================================== +--- trunk.orig/src/ppp-manager/Makefile.am 2008-04-14 23:00:54.000000000 +0100 ++++ trunk/src/ppp-manager/Makefile.am 2008-04-14 23:01:24.000000000 +0100 +@@ -25,7 +25,6 @@ + $(top_builddir)/src/marshallers/libmarshallers.la + + nm_pppd_plugindir = $(libdir) +-nm_pppd_plugin_PROGRAMS = nm-pppd-plugin.so + + nm_pppd_plugin_so_SOURCES = \ + nm-pppd-plugin.c \ |