aboutsummaryrefslogtreecommitdiff
path: root/meson/xcodebackend.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-01-15 22:40:14 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-01-15 22:40:14 +0200
commitd2a14075b3bcee9235ba21e881f0910f8bf9167a (patch)
tree15bbb902891bede7068c5252cb922208caa5692c /meson/xcodebackend.py
parent61cb4ae9ca5e0ee7b9864e22621fcbc44a9b407b (diff)
downloadmeson-d2a14075b3bcee9235ba21e881f0910f8bf9167a.zip
meson-d2a14075b3bcee9235ba21e881f0910f8bf9167a.tar.gz
meson-d2a14075b3bcee9235ba21e881f0910f8bf9167a.tar.bz2
Some fixes for other backends.
Diffstat (limited to 'meson/xcodebackend.py')
-rw-r--r--meson/xcodebackend.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson/xcodebackend.py b/meson/xcodebackend.py
index d72cbdf..8ac3f67 100644
--- a/meson/xcodebackend.py
+++ b/meson/xcodebackend.py
@@ -12,11 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import backends, build
-import mesonlib
+from . import backends, build
+from . import mesonlib
import uuid, os, sys
-from coredata import MesonException
+from .coredata import MesonException
class XCodeBackend(backends.Backend):
def __init__(self, build):