Fix dist.
* Makefile.am: Include the test/ subdirectory in the dist tarball. * include/Makefile.am: Move events.h to sdk_HEADERS and eventconvert.h to EXTRA_DIST so they're included in the tarball. events.h shouldn't be included in the SDK either, but for now it's needed by input.h.
This commit is contained in:
parent
20daa145c4
commit
7c6b5458de
|
@ -80,7 +80,8 @@ DIST_SUBDIRS = \
|
||||||
glx \
|
glx \
|
||||||
exa \
|
exa \
|
||||||
config \
|
config \
|
||||||
hw
|
hw \
|
||||||
|
test
|
||||||
|
|
||||||
# gross hack
|
# gross hack
|
||||||
relink: all
|
relink: all
|
||||||
|
|
|
@ -17,6 +17,7 @@ sdk_HEADERS = \
|
||||||
dixfontstr.h \
|
dixfontstr.h \
|
||||||
dixgrabs.h \
|
dixgrabs.h \
|
||||||
dixstruct.h \
|
dixstruct.h \
|
||||||
|
events.h \
|
||||||
exevents.h \
|
exevents.h \
|
||||||
extension.h \
|
extension.h \
|
||||||
extinit.h \
|
extinit.h \
|
||||||
|
@ -57,10 +58,11 @@ sdk_HEADERS = \
|
||||||
xkbrules.h \
|
xkbrules.h \
|
||||||
xserver-properties.h
|
xserver-properties.h
|
||||||
|
|
||||||
nodist_sdk_HEADERS = xorg-server.h events.h eventconvert.h
|
nodist_sdk_HEADERS = xorg-server.h
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AM_CFLAGS = $(DIX_CFLAGS)
|
AM_CFLAGS = $(DIX_CFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
dix-config-apple-verbatim.h
|
dix-config-apple-verbatim.h \
|
||||||
|
eventconvert.h
|
||||||
|
|
Loading…
Reference in New Issue