From 4226927ef6b6bdc27029391316c5ba7a00012652 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Mon, 21 Jun 2021 08:11:25 +0000 Subject: [PATCH] biology/seqan-apps: fix packaging on armv7 Same issue as on i386. --- biology/seqan-apps/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biology/seqan-apps/Makefile b/biology/seqan-apps/Makefile index d7838638c78f..01879b514c32 100644 --- a/biology/seqan-apps/Makefile +++ b/biology/seqan-apps/Makefile @@ -31,7 +31,7 @@ NATIVE_CMAKE_ON= -DSEQAN_ARCH_NATIVE:BOOL=TRUE .include -.if ${ARCH} == "i386" || ${ARCH} == "powerpc" +.if ${ARCH} == "armv7" || ${ARCH} == "i386" || ${ARCH} == "powerpc" PLIST_SUB+= RM_I386="@comment " .else PLIST_SUB+= RM_I386=""