Be more specific when selecting source rpms for builddep
When building binary rpms (in build action), due to not specific enough globbing, yum-builddep was run with all the files in corresponding source repository directory, including 'repodata' directory if there was one. To fix that, we use more specific glob in binary.mk template. Closes-Bug: #1212213 Change-Id: I84bcfa0a9883dbfbe966bd3890869b66f4ea5f57
This commit is contained in:
parent
852440a65c
commit
673f43f89e
@ -20,7 +20,7 @@ all: $(MARKS)
|
||||
# package names are given, so, pass them one by one
|
||||
$(BUILDDEP_MARK):
|
||||
@echo "Installing build requirements for $(REPO_NAME)"
|
||||
@for pkg in $(SRC_REPO_DIR)/*; do \
|
||||
@for pkg in $(SRC_REPO_DIR)/*.src.rpm ; do \
|
||||
$(YUM_BUILDDEP) $(YUM_BUILDDEP_FLAGS) $$pkg; \
|
||||
done &> $(LOGS_DIR)/yum-builddep-$(REPO_NAME).log
|
||||
@touch "$@"
|
||||
|
Loading…
Reference in New Issue
Block a user