From 2e425341c31b707bbdc776335682d8ce4ba9215d Mon Sep 17 00:00:00 2001 From: Albert Hopkins Date: Sat, 27 Oct 2018 11:49:42 -0700 Subject: [PATCH] Makefile: One more echo/print change --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 747cfd5..36f1e72 100644 --- a/Makefile +++ b/Makefile @@ -113,7 +113,7 @@ ifeq ($(VIRTIO),YES) sed -i 's/sda/vda/' $(CHROOT)/etc/fstab endif ifneq ($(SWAP_SIZE),0) - @scripts/echo Creating swap file: `basename $(SWAP_FILE)` + @print Creating swap file: `basename $(SWAP_FILE)` dd if=/dev/zero of=$(SWAP_FILE) bs=1M count=$(SWAP_SIZE) /sbin/mkswap $(SWAP_FILE) else