diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-06-15 11:47:09 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:57 +0100 |
commit | 1ecb384c110706f210f9b3bc66772a2f5d89e904 (patch) | |
tree | a329bfbc74b297e4553b1a0599faefb1a6a7f38c /meta/recipes-devtools/rsync/rsync.inc | |
parent | 44b185581d2635bbd9494086018c64314ab83934 (diff) | |
download | poky-1ecb384c110706f210f9b3bc66772a2f5d89e904.tar.gz |
rsync: merge rsync.inc into the rsync recipe
There's only one user of rsync.inc (meta-gplv2 has its own copy), so
merge the .inc file into the rsync recipe.
(From OE-Core rev: 4e42ad44f1df510a527d199b6ec41541f8939654)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rsync/rsync.inc')
-rw-r--r-- | meta/recipes-devtools/rsync/rsync.inc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/meta/recipes-devtools/rsync/rsync.inc b/meta/recipes-devtools/rsync/rsync.inc deleted file mode 100644 index 26c023af7a..0000000000 --- a/meta/recipes-devtools/rsync/rsync.inc +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | SUMMARY = "File synchronization tool" | ||
2 | HOMEPAGE = "http://rsync.samba.org/" | ||
3 | BUGTRACKER = "http://rsync.samba.org/bugzilla.html" | ||
4 | SECTION = "console/network" | ||
5 | |||
6 | DEPENDS = "popt" | ||
7 | |||
8 | SRC_URI = "https://download.samba.org/pub/${BPN}/src/${BP}.tar.gz \ | ||
9 | file://rsyncd.conf" | ||
10 | |||
11 | inherit autotools | ||
12 | |||
13 | do_install_append() { | ||
14 | install -d ${D}${sysconfdir} | ||
15 | install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir} | ||
16 | } | ||
17 | |||
18 | EXTRA_OEMAKE='STRIP=""' | ||
19 | |||
20 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | ||