diff --git a/make/smart-selection.mk b/make/smart-selection.mk index c17c1622..d2797c57 100644 --- a/make/smart-selection.mk +++ b/make/smart-selection.mk @@ -32,7 +32,7 @@ selection.done: $(MODDIR)/make/smart-selection.mk touch $@ channels.done: $(MODDIR)/make/smart-selection.mk - smart channel --show > $(CHANNEL_LIST) + smart channel --show | sed '/\[rpm-sys\]/,/\[/ d' > $(CHANNEL_LIST) touch $@ upload.done: selection.done @@ -47,6 +47,10 @@ rpm-install-smart.done: fi touch $@ -install-packages: - cat $(SELECTION) | xargs sudo smart install -y +smart-update.done: + smart update + touch $@ + +install-%: smart-update.done + cat $* | xargs sudo smart install -y