diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-12-28 11:58:17 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-02 12:50:12 +0000 |
commit | 8830498567e14136600a523ea15bea0afaaceb01 (patch) | |
tree | 0d0d452e1f032d318536cb2f4beb5e592dfb0075 /meta/recipes-devtools | |
parent | 7267aa98e3422d0620dc8aca1e13b91cd0a90879 (diff) | |
download | poky-8830498567e14136600a523ea15bea0afaaceb01.tar.gz |
dpkg: fix/remove unrecognised options
Fix/remove the following unrecognised options:
* --without-static-progs: can't find anything about this in the history,
so remove it.
* --without-dselect -> --disable-dselect
* --with-start-stop-daemon -> --enable-start-stop-daemon
* --with-bz2lib, typo, should be --with-bz2
* --without-sgml-doc: the sgml doc had been removed from dpkg, so
remove it.
(From OE-Core rev: 8d30a464cdb8c6bf0b9d2757ff7f8fc3445f51ba)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/dpkg/dpkg.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc index b1da4fbe59..d5dc412cd9 100644 --- a/meta/recipes-devtools/dpkg/dpkg.inc +++ b/meta/recipes-devtools/dpkg/dpkg.inc | |||
@@ -22,14 +22,14 @@ PERL_class-native = "${STAGING_BINDIR_NATIVE}/perl-native/perl" | |||
22 | export PERL_LIBDIR = "${libdir}/perl" | 22 | export PERL_LIBDIR = "${libdir}/perl" |
23 | PERL_LIBDIR_class-native = "${libdir}/perl-native/perl" | 23 | PERL_LIBDIR_class-native = "${libdir}/perl-native/perl" |
24 | 24 | ||
25 | EXTRA_OECONF = "--without-static-progs \ | 25 | EXTRA_OECONF = "\ |
26 | --without-dselect \ | 26 | --disable-dselect \ |
27 | --with-start-stop-daemon \ | 27 | --enable-start-stop-daemon \ |
28 | --with-zlib \ | 28 | --with-zlib \ |
29 | --with-bz2lib \ | 29 | --with-bz2 \ |
30 | --without-liblzma \ | 30 | --without-liblzma \ |
31 | --without-selinux \ | 31 | --without-selinux \ |
32 | --without-sgml-doc" | 32 | " |
33 | 33 | ||
34 | do_configure () { | 34 | do_configure () { |
35 | echo >> ${S}/m4/compiler.m4 | 35 | echo >> ${S}/m4/compiler.m4 |