]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: ship stamp files
authorEric Blake <eblake@redhat.com>
Thu, 16 Aug 2012 19:57:34 +0000 (13:57 -0600)
committerEric Blake <eblake@redhat.com>
Thu, 16 Aug 2012 22:37:26 +0000 (16:37 -0600)
'make distcheck' fails because the generated ESX and HyperV files
are (intentionally) marked read-only, but since the stamp file was
missing, make assumes they need to be rebuilt.  Shipping the stamp
file solves the problem.

* src/Makefile.am (EXTRA_DIST): Ship stamp files.

src/Makefile.am

index b5f8056d3ac39c430bdd993ac97a34f324b4ad9a..3184fb4ee7e84203702ba035da4c6f5dec966e3a 100644 (file)
@@ -929,6 +929,8 @@ BUILT_SOURCES += $(ESX_DRIVER_GENERATED)
 
 ESX_GENERATED_STAMP = .esx_vi_generator.stamp
 
+EXTRA_DIST += $(ESX_GENERATED_STAMP)
+
 $(ESX_DRIVER_GENERATED): $(ESX_GENERATED_STAMP)
 
 $(ESX_GENERATED_STAMP): $(srcdir)/esx/esx_vi_generator.input \
@@ -955,6 +957,8 @@ BUILT_SOURCES += $(HYPERV_DRIVER_GENERATED)
 
 HYPERV_GENERATED_STAMP = .hyperv_wmi_generator.stamp
 
+EXTRA_DIST += $(HYPERV_GENERATED_STAMP)
+
 $(HYPERV_DRIVER_GENERATED): $(HYPERV_GENERATED_STAMP)
 
 $(HYPERV_GENERATED_STAMP): $(srcdir)/hyperv/hyperv_wmi_generator.input \