1ccdc90a3d
This cp(1) option has been employed already but just for the lists (and still incomplete as it didn't cover the names coming through groups mechanism); thanks sem@ for trying out groups/simply/*, failing to build an image and reporting the problem. Reported-by: Mikhail Efremov <sem@altlinux.org>
23 lines
593 B
Makefile
23 lines
593 B
Makefile
# step 3: copy package groups referenced in distro configuration
|
|
# (and only those!) over to $(BUILDDIR)
|
|
|
|
ifndef BUILDDIR
|
|
$(error BUILDDIR not defined)
|
|
endif
|
|
|
|
include $(BUILDDIR)/distcfg.mk
|
|
SUFFIX := pkg/groups
|
|
TARGET := $(BUILDDIR)/$(SUFFIX)
|
|
|
|
all: $(GLOBAL_DEBUG)
|
|
@if [ -n "$(THE_GROUPS)$(MAIN_GROUPS)" ]; then \
|
|
mkdir -p $(TARGET) && \
|
|
cp --parents -at $(TARGET) -- \
|
|
$(addsuffix .directory,$(THE_GROUPS) $(MAIN_GROUPS)); \
|
|
mp-commit "$(TARGET)" "requested $(SUFFIX) copied over"; \
|
|
fi
|
|
|
|
debug:
|
|
@echo "** THE_GROUPS: $(THE_GROUPS)"
|
|
@echo "** MAIN_GROUPS: $(MAIN_GROUPS)"
|