community/lash: v8 fix

This commit is contained in:
Kevin Mihelich 2016-02-10 13:49:46 +00:00
parent 44d74def18
commit 0ccaf32099
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ Bug-Ubuntu: https://launchpad.net/bugs/647091
lash_error("info.si_code = %d (%s)", info->si_code, si_codes[info->si_code]);
lash_error("info.si_addr = %p", info->si_addr);
+
+#if defined(__arm__) || defined(__powerpc__) || defined (__ia64__) || defined (__alpha__) || defined (__FreeBSD_kernel__)
+#if defined(__arm__) || defined(__aarch64__) || defined(__powerpc__) || defined (__ia64__) || defined (__alpha__) || defined (__FreeBSD_kernel__)
+ lash_error("No stack trace");
+#else
for(i = 0; i < NGREG; i++)

View file

@ -21,7 +21,7 @@ source=("http://download.savannah.gnu.org/releases/lash/${pkgname}-${pkgver}.tar
'04_disable_stacktrace.patch')
md5sums=('af1dc4f4ceb284b1b0845de4f4c2fe47'
'24ceb7e3d008c25e1490102983165612'
'5bca5868120205e93caffb30c877e946')
'615f37933cedafae856aa4e7e9c3a4d9')
prepare() {
cd "${srcdir}/${pkgname}-${_relver}"