diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-15 21:57:10 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-15 21:57:10 +0200 |
commit | 61cb4ae9ca5e0ee7b9864e22621fcbc44a9b407b (patch) | |
tree | 7ef18a7a472b34356da7d949cf111e364037cde2 /meson/modules/qt5.py | |
parent | a5508d3fd362ea33633d9706a6257ef0f0c2bbc0 (diff) | |
download | meson-61cb4ae9ca5e0ee7b9864e22621fcbc44a9b407b.zip meson-61cb4ae9ca5e0ee7b9864e22621fcbc44a9b407b.tar.gz meson-61cb4ae9ca5e0ee7b9864e22621fcbc44a9b407b.tar.bz2 |
Can compile full test suite.
Diffstat (limited to 'meson/modules/qt5.py')
-rw-r--r-- | meson/modules/qt5.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson/modules/qt5.py b/meson/modules/qt5.py index 0e732a1..81edc76 100644 --- a/meson/modules/qt5.py +++ b/meson/modules/qt5.py @@ -12,10 +12,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -import dependencies, mlog +from .. import dependencies, mlog import os, subprocess -import build -from coredata import MesonException +from .. import build +from ..coredata import MesonException import xml.etree.ElementTree as ET class Qt5Module(): |