diff options
author | Pino Toscano <pino@debian.org> | 2013-04-08 10:59:11 +0200 |
---|---|---|
committer | Pino Toscano <pino@debian.org> | 2013-04-08 10:59:11 +0200 |
commit | e955fb225ab9443d4f79dc4ff259dda90bd12f39 (patch) | |
tree | 7f793043139e0d4a0dd85544f5ef6c07ae3933cb | |
parent | 3b90b18139520fec3e830a0e4378524430f0d240 (diff) | |
download | qtbase-e955fb225ab9443d4f79dc4ff259dda90bd12f39.tar.gz |
centralise the pch disabling
-rwxr-xr-x | debian/rules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 0b59151..1d07e13 100755 --- a/debian/rules +++ b/debian/rules @@ -48,7 +48,8 @@ else extra_configure_opts += -no-sql-ibase endif -ifeq ($(DEB_HOST_ARCH),arm) +no_pch_architectures := arm +ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(no_pch_architectures))) extra_configure_opts += -no-pch endif |