diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-10-16 23:17:57 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2006-10-16 23:17:57 +0000 |
commit | a5c9d1da47ad4ec0fd77ce77f1937f104c0e8ba6 (patch) | |
tree | cbdb45a3d34e712751c0854a59533e7f7c964081 /packages/oprofile | |
parent | 1a7e60041550a22ec12046ef772691ac8ba55b19 (diff) |
oprofile: Bump cvs date and update .bb accordingly, add patch to remove bashism, upgrade 0.9.1 -> 0.9.2
Diffstat (limited to 'packages/oprofile')
-rw-r--r-- | packages/oprofile/oprofile/opcontrol_bashisms.patch | 16 | ||||
-rw-r--r-- | packages/oprofile/oprofile_0.9.2.bb (renamed from packages/oprofile/oprofile_0.9.1.bb) | 1 | ||||
-rw-r--r-- | packages/oprofile/oprofile_cvs.bb | 8 |
3 files changed, 23 insertions, 2 deletions
diff --git a/packages/oprofile/oprofile/opcontrol_bashisms.patch b/packages/oprofile/oprofile/opcontrol_bashisms.patch new file mode 100644 index 0000000000..01ef11df86 --- /dev/null +++ b/packages/oprofile/oprofile/opcontrol_bashisms.patch @@ -0,0 +1,16 @@ + utils/opcontrol | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: oprofile-0.9.2/utils/opcontrol +=================================================================== +--- oprofile-0.9.2.orig/utils/opcontrol 2006-03-29 22:54:07.000000000 +0100 ++++ oprofile-0.9.2/utils/opcontrol 2006-10-12 11:14:39.000000000 +0100 +@@ -485,7 +485,7 @@ validate_separate_args() + SEPARATE_KERNEL=0 + SEPARATE_THREAD=0 + SEPARATE_CPU=0 +- while (($i < $#)); do ++ while [ "$i" -lt "$#" ]; do + shift + case "$1" in + lib|library) diff --git a/packages/oprofile/oprofile_0.9.1.bb b/packages/oprofile/oprofile_0.9.2.bb index 991c7bfc99..e64aa10d49 100644 --- a/packages/oprofile/oprofile_0.9.1.bb +++ b/packages/oprofile/oprofile_0.9.2.bb @@ -6,6 +6,7 @@ DEPENDS = "popt binutils" SRC_URI = "${SOURCEFORGE_MIRROR}/oprofile/oprofile-${PV}.tar.gz \ file://no_arm_mapping_syms.patch;patch=1 \ + file://opcontrol_bashisms.patch;patch=1 \ file://acinclude.m4" S = "${WORKDIR}/oprofile-${PV}" diff --git a/packages/oprofile/oprofile_cvs.bb b/packages/oprofile/oprofile_cvs.bb index 5818d2ae5c..902c569e85 100644 --- a/packages/oprofile/oprofile_cvs.bb +++ b/packages/oprofile/oprofile_cvs.bb @@ -1,12 +1,16 @@ -PV = "0.9.1+cvs${SRCDATE}" +PV = "0.9.2+cvs${SRCDATE}" +PR = "r1" SECTION = "devel" DESCRIPTION = "OProfile is a system-wide profiler for Linux systems, capable \ of profiling all running code at low overhead." LICENSE = "GPL" DEPENDS = "popt binutils" -SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/oprofile;module=oprofile \ +DEFAULT_PREFERENCE = "-1" + +SRC_URI = "cvs://anonymous@oprofile.cvs.sourceforge.net/cvsroot/oprofile;module=oprofile \ file://no_arm_mapping_syms.patch;patch=1 \ + file://opcontrol_bashisms.patch;patch=1 \ file://acinclude.m4" S = "${WORKDIR}/oprofile" |