summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2016-12-27 14:25:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2016-12-27 14:25:36 -0600
commit177107cdcb50df4dd30d5d124ca3cb8aeb878197 (patch)
tree842f9010dedfa69d54e90bb42e67b953d8e1982d
parent26bae35f07bf18fca5d34389cb6d134c2ca401c3 (diff)
downloadulab-177107cdcb50df4dd30d5d124ca3cb8aeb878197.tar.gz
ulab-177107cdcb50df4dd30d5d124ca3cb8aeb878197.zip
Fix FTUPS
-rwxr-xr-xlib/ffts/debian/rules19
1 files changed, 6 insertions, 13 deletions
diff --git a/lib/ffts/debian/rules b/lib/ffts/debian/rules
index 0a85b5a..968c6ef 100755
--- a/lib/ffts/debian/rules
+++ b/lib/ffts/debian/rules
@@ -20,20 +20,13 @@ DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
ifneq (,$(findstring x86_64-,$(DEB_BUILD_GNU_TYPE)))
cdbs_configure_flags := --enable-single --enable-sse --enable-shared --disable-rpath
+else ifneq (,$(findstring arm-,$(DEB_BUILD_GNU_TYPE)))
+ifneq(,$(findstring armhf,$(DEB_HOST_ARCH)))
+ cdbs_configure_flags := --enable-single --enable-neon --float_abi=hard --enable-shared --disable-rpath
+else ifneq (,$(findstring aarch64-,$(DEB_BUILD_GNU_TYPE)))
+ cdbs_configure_flags := --enable-single --enable-neon --float_abi=hard --enable-shared --disable-rpath
else
- ifneq (,$(findstring arm-,$(DEB_BUILD_GNU_TYPE)))
- ifneq(,$(findstring armhf,$(DEB_HOST_ARCH)))
- cdbs_configure_flags := --enable-single --enable-neon --float_abi=hard --enable-shared --disable-rpath
- else
- ifneq (,$(findstring aarch64-,$(DEB_BUILD_GNU_TYPE)))
- cdbs_configure_flags := --enable-single --enable-neon --float_abi=hard --enable-shared --disable-rpath
- else
- cdbs_configure_flags := --enable-single --enable-shared --disable-rpath
- endif
- endif
- else
- cdbs_configure_flags := --enable-single --enable-shared --disable-rpath
- endif
+ cdbs_configure_flags := --enable-single --enable-shared --disable-rpath
endif
post-patches:: debian/stamp-bootstrap