1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

prepend templates with dir

This commit is contained in:
Jason N. 2024-02-27 17:03:13 -05:00
parent 38adaacdb6
commit 9d5774003d

View file

@ -52,7 +52,7 @@ lorax_templates/%.tmpl: lorax_templates/%.tmpl.in
sed -i "s/\$$basearch/${ARCH}/g" $(_BASE_DIR)/$*.repo sed -i "s/\$$basearch/${ARCH}/g" $(_BASE_DIR)/$*.repo
# Step 3: Build boot.iso using Lorax # Step 3: Build boot.iso using Lorax
boot.iso: $(_LORAX_TEMPLATES) $(_REPO_FILES) boot.iso: $(foreach file,$(_LORAX_TEMPLATES),lorax_templates/$(file)) $(_REPO_FILES)
rm -Rf $(_BASE_DIR)/results rm -Rf $(_BASE_DIR)/results
lorax -p $(IMAGE_NAME) -v $(VERSION) -r $(VERSION) -t $(VARIANT) \ lorax -p $(IMAGE_NAME) -v $(VERSION) -r $(VERSION) -t $(VARIANT) \
--isfinal --squashfs-only --buildarch=$(ARCH) --volid=$(_VOLID) \ --isfinal --squashfs-only --buildarch=$(ARCH) --volid=$(_VOLID) \