diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/build/Makefile b/build/Makefile index ecb6e369..f5a51ebb 100644 --- a/build/Makefile +++ b/build/Makefile @@ -17,8 +17,8 @@ SHELL = /bin/bash export UNIT_TEST = FALSE export USE_MASTER = "" export INTERACTIVE = TRUE -export CENTDNLD = http://mirrors.cat.pdx.edu/centos/7.1.1503/isos/x86_64/CentOS-7-x86_64-DVD-1503-01.iso -export ISOSRC = file:$(shell pwd)/CentOS-7-x86_64-DVD-1503-01.iso +export CENTDNLD = http://mirrors.cat.pdx.edu/centos/7.2.1511/isos/x86_64/CentOS-7-x86_64-DVD-1511.iso +export ISOSRC = file:$(shell pwd)/$(shell basename $(CENTDNLD)) export ISOCACHE = $(shell pwd)/$(shell basename $(ISOSRC)) export PRODNO = "OPNFV_BGS" export REVSTATE = "0000" @@ -61,7 +61,7 @@ include cache.mk ############################################################################# $(ISOCACHE): - test -s $(ISOCACHE) || { wget -nv $(CENTDNLD) ; } + sh -c "test -s $(ISOCACHE) || { wget -nv $(CENTDNLD) ; }" .PHONY: mount-centiso umount-centiso mount-centiso: $(ISOCACHE) @@ -178,6 +178,7 @@ iso: build-clean instack rpm $(ISOCACHE) @mkdir centos release cd centos && bsdtar -xf ../$(shell basename $(ISOSRC)) # modify the installer iso's contents + @chmod -R u+w centos @cp -f isolinux.cfg centos/isolinux/isolinux.cfg @cp $(APEXRPMCOM) centos/Packages @cp $(APEXRPMINS) centos/Packages |