From 4c31e7774d09fe1a59b6cfd692de4f4cade1899c Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 16 Jan 2016 00:04:57 +0200 Subject: Finalize moduleification so that full test suite runs. --- run_cross_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'run_cross_test.py') diff --git a/run_cross_test.py b/run_cross_test.py index 7355c28..3545cfd 100755 --- a/run_cross_test.py +++ b/run_cross_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright 2013-2014 The Meson development team +# Copyright 2013-2016 The Meson development team # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ Not part of the main test suite because of two reasons: Eventually migrate to something fancier.''' import os, subprocess, shutil, sys -import environment +import meson.environment as environment from run_tests import gather_tests -- cgit v1.1 From 23b98cd6e66c6ae0f070e28e0f8b1566c0b5e585 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 16 Jan 2016 17:35:29 +0200 Subject: Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir. --- run_cross_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_cross_test.py') diff --git a/run_cross_test.py b/run_cross_test.py index 3545cfd..a788850 100755 --- a/run_cross_test.py +++ b/run_cross_test.py @@ -23,7 +23,7 @@ Not part of the main test suite because of two reasons: Eventually migrate to something fancier.''' import os, subprocess, shutil, sys -import meson.environment as environment +import mesonbuild.environment as environment from run_tests import gather_tests -- cgit v1.1