diff options
Diffstat (limited to 'mesonconf.py')
-rwxr-xr-x | mesonconf.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mesonconf.py b/mesonconf.py index 732a3b2..d1874e0 100755 --- a/mesonconf.py +++ b/mesonconf.py @@ -14,9 +14,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -from mesonbuild import mesonmain, mlog +from mesonbuild import mesonmain import sys if __name__ == '__main__': - mlog.warning('This executable is deprecated, use "meson configure" instead.') + print('Warning: This executable is deprecated. Use "meson configure" instead.', + file=sys.stderr) sys.exit(mesonmain.run(['configure'] + sys.argv[1:])) |