From: Thomas Goirand Date: Fri, 31 Jul 2015 21:43:25 +0000 (+0000) Subject: Fixed export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog -S Version | sed -e... X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=083ff5b2492710e7e7995f619ffc4e3e581ddaa2;p=openstack-build%2Fneutron-build.git Fixed export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog -S Version | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/') --- diff --git a/debian/rules b/debian/rules index 38f9c69c3..7f27d99b9 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f include /usr/share/openstack-pkg-tools/pkgos.make -export OSLO_PACKAGE_VERSION=$(VERSION) +export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog -S Version | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/') PYTHONS:=$(shell pyversions -vr)