eobuilder: I love setuptools

This commit is contained in:
Jérôme Schneider 2013-11-19 17:34:44 +01:00
parent 57647e8b5f
commit 8927696493
1 changed files with 3 additions and 3 deletions

View File

@ -135,9 +135,9 @@ cd $GIT_PROJECT_PATH
git checkout master
git pull
if [ -f "setup.py" ]; then
PROJECT_NAME=`python setup.py --name`
PROJECT_VERSION=`python setup.py --version`
PROJECT_FULL_NAME=`python setup.py --fullname`
PROJECT_NAME=`python setup.py --name 2> /dev/null`
PROJECT_VERSION=`python setup.py --version 2> /dev/null`
PROJECT_FULL_NAME=`python setup.py --fullname 2> /dev/null`
elif [ -f "configure.ac" ]; then
./autogen.sh
make all