From 5be765809ed28358b60fe6897d3819fbe14c25ab Mon Sep 17 00:00:00 2001 Message-Id: <5be765809ed28358b60fe6897d3819fbe14c25ab.1714828820.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 23 Apr 2006 17:05:46 +0100 Subject: [PATCH] Makefile: Run `zone' without runlisp; print zones being installed. Organization: Straylight/Edgeware From: Mark Wooding --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 42de330..cd898ae 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ## Makefile for mdw's zones -ZONE = runlisp /home/mdw/bin/zone +ZONE = zone HIBACHI_ZONES = hibachidealers.com.zone DISTORTED_ZONES = \ @@ -23,7 +23,7 @@ install: all publish for i in $(ALL_ZONES); do \ cmp $$i publish/$$i >/dev/null 2>&1 && continue; \ cp $$i publish/$$i.new && mv publish/$$i.new publish/$$i; \ - userv root named-reload $${i%.zone}; \ + echo -n "$${i%.zone}: "; userv root named-reload $${i%.zone}; \ done $(HIBACHI_ZONES): hibachidealers.com.lisp hosts.lisp -- [mdw]