summaryrefslogtreecommitdiff
path: root/package/brutefir
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-12-25 08:50:02 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-12-25 08:53:39 +0100
commit68084b1249b2a7c937236104326ad78ec5af71cf (patch)
tree687df246ec870acbc0c087edcbfdd7c480e59bbe /package/brutefir
parent9ef6bc847fce47f046555d7a2f2f882603c0ad30 (diff)
brutefir: fix typo in variable
Diffstat (limited to 'package/brutefir')
-rw-r--r--package/brutefir/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/brutefir/Makefile b/package/brutefir/Makefile
index 9dd1f71fc..8fd9044aa 100644
--- a/package/brutefir/Makefile
+++ b/package/brutefir/Makefile
@@ -32,7 +32,7 @@ CONFIG_STYLE= manual
ifeq ($(ADK_TARGET_CPU_WITH_SSE2),y)
TARGET_CFLAGS+= -msse2
else
-ifeq ($ADK_TARGET_CPU_WITH_SSE),y)
+ifeq ($(ADK_TARGET_CPU_WITH_SSE),y)
TARGET_CFLAGS+= -msse
endif
endif
@@ -47,6 +47,6 @@ brutefir-install:
$(INSTALL_BIN) $(WRKINST)/usr/bin/brutefir \
$(IDIR_BRUTEFIR)/usr/bin
$(CP) $(WRKINST)/usr/lib/* \
- $(IDIR_BRUTEFIR)/usr/lib/
+ $(IDIR_BRUTEFIR)/usr/lib
include $(ADK_TOPDIR)/mk/pkg-bottom.mk