diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-08-03 23:16:09 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-08-03 23:16:09 +0000 |
commit | c4ff515dc73e78f46a3e81e69458654afc9dd788 (patch) | |
tree | 97d4936a0cc7d01b27e52c79f69764e5c16e9f61 /packages/strace/strace_4.5.14.bb | |
parent | 4e0950a0db376b2ffaedbef84866795012c3036d (diff) |
strace 4.5.14 fix compiling for mips[-el]. closes bug #2221
(albeit by convoluting this recipe even more...)
Diffstat (limited to 'packages/strace/strace_4.5.14.bb')
-rw-r--r-- | packages/strace/strace_4.5.14.bb | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/packages/strace/strace_4.5.14.bb b/packages/strace/strace_4.5.14.bb index 0571c466d5..cb697008b8 100644 --- a/packages/strace/strace_4.5.14.bb +++ b/packages/strace/strace_4.5.14.bb @@ -1,7 +1,7 @@ DESCRIPTION = "strace is a system call tracing tool." SECTION = "console/utils" LICENSE = "GPL" -PR = "r6" +PR = "r7" SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.bz2 \ file://glibc-2.5.patch;patch=1 \ @@ -13,8 +13,6 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.bz2 \ file://strace-undef-syscall.patch;patch=1 \ file://strace-arm-no-cachectl.patch;patch=1 \ " - - # The strace-4.5.14-avr32.patch conflicts with some other patches. # These patches are primarly for the ARM and SuperH, so we'll just @@ -27,6 +25,20 @@ SRC_URI_avr32 = \ file://strace-4.5.14-avr32-add-syscalls-up-to-sysvipc.patch;patch=1 \ " +# Again, a different set of patches for MIPS. See http://bugs.openembedded.net/show_bug.cgi?id=2221 +MIPS = "\ + ${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.bz2 \ + file://glibc-2.5.patch;patch=1 \ + file://arm-eabi.patch;patch=1 \ + file://sh-arch-update.patch;patch=1 \ + file://sh-syscall-update.patch;patch=1 \ + file://strace-fix-arm-bad-syscall.patch;patch=1 \ + file://strace-undef-syscall.patch;patch=1 \ + file://strace-arm-no-cachectl.patch;patch=1 \ + file://mips-sigcontext.patch;patch=1 \ +" +SRC_URI_mips = "${MIPS}" +SRC_URI_mipsel = "${MIPS}" inherit autotools |