diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-02-24 10:42:35 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-02-24 10:42:35 -0800 |
commit | ffdb90f39a56e5f0dacefd19ccf85ddd0e7a01c0 (patch) | |
tree | 764ba29462f20fb1196b9fba1dc3374f9bec2c8f | |
parent | 5eb7e466545ffc2e954a283074ec661bca87afa3 (diff) | |
download | spack-ffdb90f39a56e5f0dacefd19ccf85ddd0e7a01c0.tar.gz spack-ffdb90f39a56e5f0dacefd19ccf85ddd0e7a01c0.tar.bz2 spack-ffdb90f39a56e5f0dacefd19ccf85ddd0e7a01c0.tar.xz spack-ffdb90f39a56e5f0dacefd19ccf85ddd0e7a01c0.zip |
Last minute Qt bugfix.
-rw-r--r-- | var/spack/packages/qt/package.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/var/spack/packages/qt/package.py b/var/spack/packages/qt/package.py index 1dc3e1e51d..4a9a867511 100644 --- a/var/spack/packages/qt/package.py +++ b/var/spack/packages/qt/package.py @@ -79,10 +79,9 @@ class Qt(Package): '-no-openvg', '-no-pch', # NIS is deprecated in more recent glibc - "-no-nis", - # For now, disable all the database drivers - "-no-sql-db2", "-no-sql-ibase", "-no-sql-mysql", "-no-sql-oci", "-no-sql-odbc", - "-no-sql-psql", "-no-sql-sqlite", "-no-sql-sqlite2", "-no-sql-tds"] + "-no-nis"] + # Don't disable all the database drivers, but should + # really get them into spack at some point. @when('@4') |