Removed custom tar generator.

pull/356/head
Jussi Pakkanen 9 years ago
parent 2e42427d4a
commit 5a77aff4ad
  1. 5
      create_release.sh
  2. 3
      setup.py

@ -1,5 +0,0 @@
#!/bin/sh
version=`./meson.py -v`
git archive --prefix meson-${version}/ HEAD | gzip > meson_${version}.tar.gz

@ -14,6 +14,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# We need to support Python installations that have nothing but the basic
# Python installation. Use setuptools when possible and fall back to
# plain distutils when setuptools is not available.
try:
from setuptools import setup
except ImportError:

Loading…
Cancel
Save