summaryrefslogtreecommitdiffstats
path: root/external/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe-3.12/top-autoconf.patch
diff options
context:
space:
mode:
authortakeshi_hoshina <takeshi_hoshina@mail.toyota.co.jp>2020-11-02 11:07:33 +0900
committertakeshi_hoshina <takeshi_hoshina@mail.toyota.co.jp>2020-11-02 11:07:33 +0900
commit1c7d6584a7811b7785ae5c1e378f14b5ba0971cf (patch)
treecd70a267a5ef105ba32f200aa088e281fbd85747 /external/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe-3.12/top-autoconf.patch
parent4204309872da5cb401cbb2729d9e2d4869a87f42 (diff)
recipes
Diffstat (limited to 'external/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe-3.12/top-autoconf.patch')
-rw-r--r--external/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe-3.12/top-autoconf.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/external/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe-3.12/top-autoconf.patch b/external/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe-3.12/top-autoconf.patch
deleted file mode 100644
index f64da4fa..00000000
--- a/external/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe-3.12/top-autoconf.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 0b62f71eb5d44d4a57103566ba58022b6304fa4f Mon Sep 17 00:00:00 2001
-From: Tom Rini <tom_rini@mentor.com>
-Date: Wed, 27 Jul 2011 03:46:52 +0000
-Subject: [PATCH] rp-pppoe: Port from oe.dev
-
-The autoconf stuff is all in a subdirectory, which is rather annoying
-as OE expects patches to be applied and autoconf stuff to be done in
-S. This adds enough autoconf at the top level to allow it to be
-called there - all it does is run a sub autoconf stuff in the src
-directory.
-
-Upstream-Status: Inappropriate [build system specific change]
-
----
- Makefile.am | 5 +++++
- configure.in | 4 ++++
- 2 files changed, 9 insertions(+)
- create mode 100644 Makefile.am
- create mode 100644 configure.in
-
-diff --git a/Makefile.am b/Makefile.am
-new file mode 100644
-index 0000000..eff6977
---- /dev/null
-+++ b/Makefile.am
-@@ -0,0 +1,5 @@
-+PACKAGE = rp-pppoe
-+VERSION = 3.8
-+
-+dnl AM_CFLAGS = -Wall -DDEBUG
-+SUBDIRS = src
-diff --git a/configure.in b/configure.in
-new file mode 100644
-index 0000000..ac1a7e4
---- /dev/null
-+++ b/configure.in
-@@ -0,0 +1,4 @@
-+AC_INIT(src/pppoe.c)
-+AM_INIT_AUTOMAKE([rp-pppoe], [3.8])
-+AC_CONFIG_SUBDIRS(src)
-+AC_OUTPUT(Makefile)