From e0aa0716708fc00f11cd86e439c3ccfa0bdc044e Mon Sep 17 00:00:00 2001 From: Joanna Rutkowska Date: Thu, 7 Apr 2011 12:36:58 +0200 Subject: [PATCH] Makefile: udpate-repo-installler --- Makefile | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b9733a1..ddab073 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ RPMS_DIR=rpm/ VERSION := $(shell cat version) help: - @echo "make rpms -- generate binary rpm packages" - @echo "make res -- compile resources" - @echo "make update-repo-current -- copy newly generated rpms to qubes yum repo" - @echo "make update-repo-unstable -- same, but to -testing repo" + @echo "make rpms -- generate binary rpm packages" + @echo "make res -- compile resources" + @echo "make update-repo-current -- copy newly generated rpms to qubes yum repo" + @echo "make update-repo-unstable -- same, but to -testing repo" + @echo "make update-repo-installer -- copy dom0 rpms to installer repo" rpms: @@ -19,6 +20,12 @@ res: update-repo-current: ln -f $(RPMS_DIR)/x86_64/qubes-manager-*$(VERSION)*.rpm ../yum/current-release/current/dom0/rpm/ + cd ../yum && ./update_repo.sh update-repo-unstable: ln -f $(RPMS_DIR)/x86_64/qubes-manager-*$(VERSION)*.rpm ../yum/current-release/unstable/dom0/rpm/ + cd ../yum && ./update_repo.sh + +update-repo-installer: + ln -f $(RPMS_DIR)/x86_64/qubes-manager-*$(VERSION)*.rpm ../installer/yum/qubes-dom0/rpm/ + cd ../installer/yum && ./update_repo.sh