diff options
author | Dan Radez <dradez@redhat.com> | 2016-02-26 09:47:36 -0500 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-02-29 09:45:23 -0500 |
commit | 7f1312c63dff70df8a2c29bfe4a16b6e159e4c44 (patch) | |
tree | 6e08f164bacc475c730d7f7062f25baf1d2d7b10 | |
parent | 034166ea6f9330310789407d8a124812042f305d (diff) |
updating the centos dvd version
Change-Id: I2ab43f43858745b5ac5ed695301ad09290b2c320
Signed-off-by: Dan Radez <dradez@redhat.com>
-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 |