diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-03 12:35:27 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-03 12:35:27 +0000 |
commit | 9e0d29ac3f460f376cc032cb475b963cc42cc406 (patch) | |
tree | db25e4586a27a3042b88a1528f911cc3bf987474 /alpine.mk | |
parent | 6cce6e94ef2280c52c00929789c452c02187d641 (diff) | |
download | abuild-9e0d29ac3f460f376cc032cb475b963cc42cc406.tar.gz abuild-9e0d29ac3f460f376cc032cb475b963cc42cc406.tar.bz2 abuild-9e0d29ac3f460f376cc032cb475b963cc42cc406.tar.xz abuild-9e0d29ac3f460f376cc032cb475b963cc42cc406.zip |
alpine.mk: make it possible to override mkcramfs with mkfs.cramfs
Diffstat (limited to 'alpine.mk')
-rwxr-xr-x | alpine.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,6 +8,7 @@ ALPINE_NAME ?= alpine-test ALPINE_ARCH := i386 DESTDIR ?= $(shell pwd)/isotmp +MKCRAMFS = mkcramfs SUDO = sudo ISO ?= $(ALPINE_NAME)-$(ALPINE_RELEASE)-$(ALPINE_ARCH).iso @@ -105,7 +106,7 @@ $(MODLOOP_DIRSTAMP): $(MODLOOP): $(MODLOOP_DIRSTAMP) @echo "==> modloop: building image $(notdir $(MODLOOP))" @mkdir -p $(dir $(MODLOOP)) - @mkcramfs $(MODLOOP_DIR)/lib $(MODLOOP) + @$(MKCRAMFS) $(MODLOOP_DIR)/lib $(MODLOOP) clean-modloop: @rm -rf $(MODLOOP_DIR) $(MODLOOP_DIRSTAMP) $(MODLOOP) |