diff options
author | John Lee <john_lee@openmoko.org> | 2008-05-23 09:10:35 +0000 |
---|---|---|
committer | John Lee <john_lee@openmoko.org> | 2008-05-23 09:10:35 +0000 |
commit | 14dda1dd17204a6720792103382088511ac08505 (patch) | |
tree | 5bc25034ff48cf902686344009c3dac19c40b529 /packages/oprofile/oprofile_0.9.3.bb | |
parent | e91a812ac4a6b1dd9d3cd9aef1f87c33deaa5085 (diff) |
oprofile: make opcontrol compatible with busybox 'kill'
Diffstat (limited to 'packages/oprofile/oprofile_0.9.3.bb')
-rw-r--r-- | packages/oprofile/oprofile_0.9.3.bb | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/packages/oprofile/oprofile_0.9.3.bb b/packages/oprofile/oprofile_0.9.3.bb index d758b97549..977907e305 100644 --- a/packages/oprofile/oprofile_0.9.3.bb +++ b/packages/oprofile/oprofile_0.9.3.bb @@ -1,11 +1,15 @@ -SECTION = "devel" DESCRIPTION = "OProfile is a system-wide profiler for Linux systems, capable \ of profiling all running code at low overhead." +SECTION = "devel" LICENSE = "GPL" DEPENDS = "popt binutils" +PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/oprofile/oprofile-${PV}.tar.gz \ - file://acinclude.m4" + file://acinclude.m4 \ + file://opcontrol-busybox-compat.patch;patch=1 \ + " + S = "${WORKDIR}/oprofile-${PV}" inherit autotools @@ -14,12 +18,12 @@ inherit autotools # Should add the oprofile kernel modules, for those with 2.4 # kernels, as a seperate .oe file. EXTRA_OECONF = "--with-kernel-support \ - --without-x \ - --disable-werror " + --without-x \ + --disable-werror " do_configure () { - cp ${WORKDIR}/acinclude.m4 ${S}/ - autotools_do_configure + cp ${WORKDIR}/acinclude.m4 ${S}/ + autotools_do_configure } # Available config options # --enable-abi enable abi portability code (default is disabled) |