summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-02-17 16:58:32 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-23 12:49:51 -0800
commit39144a5a196b12d9259beea51ffb3174caf3a3ec (patch)
treea42bae225f96e794284598b55a53e41d438dc80c /meta/recipes-devtools/btrfs-tools
parent73c70c7d13b3adc2fbaf82c4b7ee2ca316408291 (diff)
downloadpoky-39144a5a196b12d9259beea51ffb3174caf3a3ec.tar.gz
btrfs-tools: don't run autogen.sh
Instead of running autogen.sh (which runs autoconf et al) before running autoreconf (which runs autoreconf et al...) just do the one task that we need from autogen.sh: copying install-sh from automake's libdir. (From OE-Core rev: 0e3a933c376b3bdb46bd3a2993932888ecfde434) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.5.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.5.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.5.bb
index 7047c43402..04e1e6195c 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.5.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.5.bb
@@ -14,17 +14,17 @@ DEPENDS = "util-linux attr e2fsprogs lzo acl udev"
14RDEPENDS_${PN} = "libgcc" 14RDEPENDS_${PN} = "libgcc"
15 15
16SRCREV = "144a19145e248513c7a676defad59836830535c6" 16SRCREV = "144a19145e248513c7a676defad59836830535c6"
17SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \ 17SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git"
18"
19 18
20inherit autotools-brokensep pkgconfig manpages 19inherit autotools-brokensep pkgconfig manpages
21 20
22PACKAGECONFIG[manpages] = "--enable-documentation, --disable-documentation, asciidoc-native xmlto-native" 21PACKAGECONFIG[manpages] = "--enable-documentation, --disable-documentation, asciidoc-native xmlto-native"
23EXTRA_OECONF_append_libc-musl = " --disable-backtrace " 22EXTRA_OECONF_append_libc-musl = " --disable-backtrace "
24 23
25
26do_configure_prepend() { 24do_configure_prepend() {
27 sh autogen.sh 25 # Upstream doesn't ship this and autoreconf won't install it as automake isn't used.
26 mkdir -p ${S}/config
27 cp -f $(automake --print-libdir)/install-sh ${S}/config/
28} 28}
29 29
30S = "${WORKDIR}/git" 30S = "${WORKDIR}/git"