From 92feed7d662b7d9d1f8c475cf06df203143a3a5f Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 3 Oct 2012 11:46:07 +0100 Subject: build: Use 'tmp-d' as name of temporary directory instead of 'tmp'. When building supermin.d/daemon.img, use 'tmp-d' instead of 'tmp' as the name of the temporary directory. This is just code motion. --- appliance/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'appliance') diff --git a/appliance/Makefile.am b/appliance/Makefile.am index fb1f676c..6d8b74a0 100644 --- a/appliance/Makefile.am +++ b/appliance/Makefile.am @@ -76,12 +76,12 @@ stamp-supermin: make.sh packagelist excludelist supermin.d/daemon.img: ../daemon/guestfsd guestfsd.suppressions mkdir -p supermin.d rm -f $@ $@-t - rm -rf tmp - mkdir -p tmp$(DAEMON_SUPERMIN_DIR) tmp/etc - ln ../daemon/guestfsd tmp$(DAEMON_SUPERMIN_DIR)/guestfsd - ln $(srcdir)/guestfsd.suppressions tmp/etc/guestfsd.suppressions - ( cd tmp && find | cpio --quiet -o -H newc ) > $@-t - rm -rf tmp + rm -rf tmp-d + mkdir -p tmp-d$(DAEMON_SUPERMIN_DIR) tmp-d/etc + ln ../daemon/guestfsd tmp-d$(DAEMON_SUPERMIN_DIR)/guestfsd + ln $(srcdir)/guestfsd.suppressions tmp-d/etc/guestfsd.suppressions + ( cd tmp-d && find | cpio --quiet -o -H newc ) > $@-t + rm -rf tmp-d mv $@-t $@ supermin.d/init.img: init -- cgit