summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2016-12-27 14:09:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2016-12-27 14:09:19 -0600
commit5cbb2fb581a99c5375a334fdded8bb7028d56ac1 (patch)
tree053df55c94a1b7ab12e8850fc99da4c9a8e6d8df /lib
parent2efdadf7e9ab245197dc6510adca3ebd8d93ed52 (diff)
downloadulab-5cbb2fb581a99c5375a334fdded8bb7028d56ac1.tar.gz
ulab-5cbb2fb581a99c5375a334fdded8bb7028d56ac1.zip
Fix FTBFS
Diffstat (limited to 'lib')
-rwxr-xr-xlib/ffts/debian/rules18
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/ffts/debian/rules b/lib/ffts/debian/rules
index 69f3aae..3fb3153 100755
--- a/lib/ffts/debian/rules
+++ b/lib/ffts/debian/rules
@@ -20,14 +20,18 @@ 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
- endif
-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
+ 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
+ endif
endif
post-patches:: debian/stamp-bootstrap