call ./setup.py for when . is not in PATH
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 8 Jun 2015 13:53:42 +0000 (15:53 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 8 Jun 2015 13:53:42 +0000 (15:53 +0200)
Makefile

index ff684af..f1a97d5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -83,7 +83,7 @@ pypi:
        @if [ -n "$(ALREADY_SET)" ] ; then echo "tag $(VERSIONTAG) already set"; false; fi
        @echo "You are about to release $(VERSION) - OK (Ctrl-c if not) ? " ; read _
        git tag $(VERSIONTAG)
-       setup.py sdist upload -r pypi
+       ./setup.py sdist upload -r pypi
        @if [ ssh $(PYPI_TARBALL_HOST) ls $(PYPI_TARBALL_TOPDIR)/$(VERSIONTAR) ] ;\
          then echo "$(VERSIONTAR) already present on $(PYPI_TARBALL_HOST) - ignored" ;\
          else rsync -av dist/$(VERSIONTAR) $(PYPI_TARBALL_HOST):$(PYPI_TARBALL_TOPDIR)/ ;\
@@ -95,4 +95,4 @@ pypi:
 # in this case we do not want to upload anything on the build box though
 
 testpypi: 
-       setup.py sdist upload -r testpypi
+       ./setup.py sdist upload -r testpypi