diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-22 23:18:13 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-22 23:18:13 +0200 |
commit | 9049c769376075ee5be7b18138e12ad909fb67f9 (patch) | |
tree | 6273029df940fb7b53e6be46aaca1a297471aa75 | |
parent | fc24c5db8c2ef04779956527bd6aecf9f6716e9a (diff) | |
download | meson-9049c769376075ee5be7b18138e12ad909fb67f9.zip meson-9049c769376075ee5be7b18138e12ad909fb67f9.tar.gz meson-9049c769376075ee5be7b18138e12ad909fb67f9.tar.bz2 |
Fix installation.
-rwxr-xr-x | install_meson.py | 6 | ||||
-rw-r--r-- | readme.txt | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/install_meson.py b/install_meson.py index f27492b..af736ae 100755 --- a/install_meson.py +++ b/install_meson.py @@ -31,12 +31,6 @@ parser.add_option('--prefix', default='/usr/local', dest='prefix', parser.add_option('--destdir', default='', dest='destdir', help='the destdir (default: %default)') -try: - open('parsetab.py', 'r').close() -except IOError: - print('Parsetab.py not found, run compile_meson.py first.') - sys.exit(1) - (options, args) = parser.parse_args(sys.argv) if options.prefix[0] != '/': print('Error, prefix must be an absolute path.') @@ -12,7 +12,7 @@ You can run Meson directly from a revision control checkout. Installing it system-wide is simple. Configure step: None -Compile step: ./compile_meson.py +Compile step: None Unit test step: ./run_tests.py Install step: [sudo] ./install_meson.py --prefix /your/prefix --destdir /destdir/path |