python: Fix python sdist.

Since commit 83e92b4a97, utils.c
includes "ignore-value.h".  We copy utils.c into the python sdist
tarball, but it didn't not compile because of the missing header file.
Therefore we need to copy the header in too.

Fixes commit 83e92b4a97.
This commit is contained in:
Richard W.M. Jones
2016-07-11 15:46:23 +01:00
parent 4140766460
commit c56c6e9010
3 changed files with 7 additions and 0 deletions

View File

@@ -79,12 +79,16 @@ stamp-extra-files: \
guestfs-internal-all.h \
guestfs-internal-frontend-cleanups.h \
guestfs-internal-frontend.h \
ignore-value.h \
utils.c
touch $@
config.h:
ln ../config.h $@
ignore-value.h:
ln $(top_srcdir)/gnulib/lib/ignore-value.h $@
guestfs-internal-all.h:
ln $(top_srcdir)/src/guestfs-internal-all.h $@
@@ -119,6 +123,7 @@ CLEANFILES = \
guestfs-internal-all.h \
guestfs-internal-frontend-cleanups.h \
guestfs-internal-frontend.h \
ignore-value.h \
stamp-extra-files \
utils.c