Fixing how we get the RPM version from the spec file 03/12003/1
authorDan Radez <dradez@redhat.com>
Thu, 7 Apr 2016 14:32:36 +0000 (10:32 -0400)
committerDan Radez <dradez@redhat.com>
Thu, 7 Apr 2016 14:32:36 +0000 (10:32 -0400)
Change-Id: Ib7c1ccc1d82f6f6ef11f553d3f56cd3da35dc3b1
Signed-off-by: Dan Radez <dradez@redhat.com>
build/Makefile

index e7def26..3746fab 100644 (file)
@@ -12,7 +12,7 @@ export CENTDNLD = http://mirrors.cat.pdx.edu/centos/7.2.1511/isos/x86_64/CentOS-
 export CENTISO = $(shell pwd)/$(shell basename $(CENTDNLD))
 export RELEASE = "0"
 export ISO = $(shell pwd)/release/OPNFV-CentOS-7-x86_64-${RELEASE}.iso
-export RPMVERS = $(shell grep Version $(shell pwd)/opnfv-apex.spec | awk '{ print $$2 }')
+export RPMVERS = $(shell grep Version $(shell pwd)/opnfv-apex.spec | head -n 1 | awk '{ print $$2 }')
 export RPMCOM = $(shell pwd)/noarch/opnfv-apex-common-$(RPMVERS)-$(shell echo ${RELEASE} | tr -d '_-').noarch.rpm
 export RPMUDR = $(shell pwd)/noarch/opnfv-apex-undercloud-$(RPMVERS)-$(shell echo ${RELEASE} | tr -d '_-').noarch.rpm
 export RPMODL = $(shell pwd)/noarch/opnfv-apex-$(RPMVERS)-$(shell echo ${RELEASE} | tr -d '_-').noarch.rpm