aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-01-16 20:13:56 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-01-16 20:13:56 +0200
commit5a77aff4ad322d753681aae6fb2f0ca41145ca24 (patch)
treeb79092923f180a9a052535555aba44e8ff00b1f0
parent2e42427d4ac17e3fce819c7d3095c354c4c3c555 (diff)
downloadmeson-5a77aff4ad322d753681aae6fb2f0ca41145ca24.zip
meson-5a77aff4ad322d753681aae6fb2f0ca41145ca24.tar.gz
meson-5a77aff4ad322d753681aae6fb2f0ca41145ca24.tar.bz2
Removed custom tar generator.
-rwxr-xr-xcreate_release.sh5
-rw-r--r--setup.py3
2 files changed, 3 insertions, 5 deletions
diff --git a/create_release.sh b/create_release.sh
deleted file mode 100755
index 0a04454..0000000
--- a/create_release.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-version=`./meson.py -v`
-git archive --prefix meson-${version}/ HEAD | gzip > meson_${version}.tar.gz
-
diff --git a/setup.py b/setup.py
index 5885683..48aca5a 100644
--- a/setup.py
+++ b/setup.py
@@ -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: