diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-16 23:56:45 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-16 23:59:05 +0200 |
commit | 74927246552e4e6e32d50603719ccf03411910c9 (patch) | |
tree | 8f324edcd725de2f63d3cf7e06a9a1c2fd24e5dc | |
parent | eda57f887a0cd62d29c0b9fa938a831ff7ba7307 (diff) | |
download | meson-74927246552e4e6e32d50603719ccf03411910c9.zip meson-74927246552e4e6e32d50603719ccf03411910c9.tar.gz meson-74927246552e4e6e32d50603719ccf03411910c9.tar.bz2 |
Fix wraptool.
-rw-r--r-- | setup.py | 2 | ||||
-rwxr-xr-x | wraptool | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -56,5 +56,5 @@ setup(name='meson', ], long_description='''Meson is a cross-platform build system designed to be both as fast and as user friendly as possible. It supports many languages and compilers, including -Gcc, clang and Visual Studio. Its build definitions are written in a simple non-turing +GCC, Clang and Visual Studio. Its build definitions are written in a simple non-turing complete DSL.''') @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from meson.wrap import wraptool +from mesonbuild.wrap import wraptool import sys -sys.exit(wraptool.run(sys.argv[1:]))
\ No newline at end of file +sys.exit(wraptool.run(sys.argv[1:])) |