diff options
author | Jeremy Puhlman <jpuhlman@mvista.com> | 2020-03-05 14:39:37 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-03-06 17:23:54 -0800 |
commit | fd2e895c9c28e8593cd7e21f090f56cc8cbeda58 (patch) | |
tree | 64eb3ef87bdea8bb48843af697339b3257e337dd /meta-networking/recipes-daemons | |
parent | 8bfb1ff1a6d50cb241bd5a6d326eed76284f4818 (diff) | |
download | meta-openembedded-fd2e895c9c28e8593cd7e21f090f56cc8cbeda58.tar.gz |
proftpd: make prxs a mulitlib script
Script encodes compiler settings and compiler name.
my $compiler = q(x86_64-poky-linux-gcc -m64 -march=nehalem -mtune=generic -mfpmath=sse -msse4.2 );
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons')
-rw-r--r-- | meta-networking/recipes-daemons/proftpd/proftpd_1.3.6.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-networking/recipes-daemons/proftpd/proftpd_1.3.6.bb b/meta-networking/recipes-daemons/proftpd/proftpd_1.3.6.bb index a080bec81..d5bbdd374 100644 --- a/meta-networking/recipes-daemons/proftpd/proftpd_1.3.6.bb +++ b/meta-networking/recipes-daemons/proftpd/proftpd_1.3.6.bb | |||
@@ -16,7 +16,7 @@ SRC_URI = "ftp://ftp.proftpd.org/distrib/source/${BPN}-${PV}.tar.gz \ | |||
16 | iSRC_URI[md5sum] = "13270911c42aac842435f18205546a1b" | 16 | iSRC_URI[md5sum] = "13270911c42aac842435f18205546a1b" |
17 | SRC_URI[sha256sum] = "91ef74b143495d5ff97c4d4770c6804072a8c8eb1ad1ecc8cc541b40e152ecaf" | 17 | SRC_URI[sha256sum] = "91ef74b143495d5ff97c4d4770c6804072a8c8eb1ad1ecc8cc541b40e152ecaf" |
18 | 18 | ||
19 | inherit autotools-brokensep useradd update-rc.d systemd | 19 | inherit autotools-brokensep useradd update-rc.d systemd multilib_script |
20 | 20 | ||
21 | PACKAGECONFIG ??= "shadow \ | 21 | PACKAGECONFIG ??= "shadow \ |
22 | ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 pam', d)} \ | 22 | ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 pam', d)} \ |
@@ -134,6 +134,8 @@ GROUPADD_PARAM_${PN} = "--system ${FTPGROUP}" | |||
134 | USERADD_PARAM_${PN} = "--system -g ${FTPGROUP} --home-dir /var/lib/${FTPUSER} --no-create-home \ | 134 | USERADD_PARAM_${PN} = "--system -g ${FTPGROUP} --home-dir /var/lib/${FTPUSER} --no-create-home \ |
135 | --shell /bin/false ${FTPUSER}" | 135 | --shell /bin/false ${FTPUSER}" |
136 | 136 | ||
137 | MULTILIB_SCRIPTS = "${PN}:${bindir}/prxs" | ||
138 | |||
137 | FILES_${PN} += "/home/${FTPUSER}" | 139 | FILES_${PN} += "/home/${FTPUSER}" |
138 | 140 | ||
139 | RDEPENDS_${PN} += "perl" | 141 | RDEPENDS_${PN} += "perl" |