build: Ensure building appliance depends on guestfsd
authorMatthew Booth <mbooth@redhat.com>
Fri, 20 Nov 2009 18:43:20 +0000 (18:43 +0000)
committerRichard Jones <rjones@redhat.com>
Sat, 21 Nov 2009 21:13:36 +0000 (21:13 +0000)
Previously, only the update.sh rule checked the daemon had been built. update.sh
is called directly from within make.sh, so in that path the dependency was never
checked. This adds the daemon dependency explicitly to the rebuild-from-scratch
path.

appliance/Makefile.am

index bf1183d..abb5086 100644 (file)
@@ -59,7 +59,7 @@ endif
 # This is for building the normal appliance:
 $(INITRAMFSIMG) $(VMLINUZ): $(top_builddir)/initramfs/fakeroot.log
 
-$(top_builddir)/initramfs/fakeroot.log: make.sh kmod.whitelist packagelist
+$(top_builddir)/initramfs/fakeroot.log: make.sh kmod.whitelist packagelist $(top_builddir)/daemon/guestfsd
        mv $(INITRAMFSIMG) $(INITRAMFSIMG).bak 2>/dev/null; :
        mv $(VMLINUZ) $(VMLINUZ).bak 2>/dev/null; :
        if ! bash make.sh; then rm -f $@; exit 1; fi