Commit 29bed91a authored by Christophe Fergeau's avatar Christophe Fergeau Committed by Nikias Bassen

build: Make sure plist.pxd is included in tarballs

When generating a tarball on a system without cython installed,
plist.pxd was missing, causing build failures later on when trying to
use cython.
This seems to be caused by EXTRA_DIST being inside a if HAVE_CYTHON
block rather than being outside of it.
parent 054578a2
......@@ -3,19 +3,18 @@ AM_CPPFLAGS = -I$(top_srcdir)/include
AM_CFLAGS = $(GLOBAL_CFLAGS)
AM_LDFLAGS = $(GLOBAL_LDFLAGS)
EXTRA_DIST = plist.pyx plist.pxd
if HAVE_CYTHON
BUILT_SOURCES = plist.c
PXDINCLUDES = plist.pxd $(CYTHON_PLIST_INCLUDE_DIR)/plist.pxd
PXIINCLUDES =
CLEANFILES = \
*.pyc \
*.pyo \
plist.c
EXTRA_DIST = plist.pyx plist.pxd $(PXIINCLUDES)
plistdir = $(pyexecdir)
plist_LTLIBRARIES = plist.la
plist_la_SOURCES = plist_util.c plist_util.h plist.pyx
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment