build: Unconditionally dist tapset files

Apparently whoever made the last tarball didn't have `--enable-systemtap`.
Disted files shouldn't depend on build flags.

Also, it is cathartic for me to say tarballs are dumb and we should
just be pulling from git which is what's canonically tracking what's
source code and what's not and we don't need to repeat ourself in
`Makefile.am`.

https://bugzilla.gnome.org/show_bug.cgi?id=762637
This commit is contained in:
Colin Walters 2016-02-24 13:40:25 -05:00
parent 53a24814f6
commit ad2092bc68

View File

@ -377,11 +377,12 @@ CLEANFILES += glib_probes.h glib_probes.h.tmp
libglib_2_0_la_LIBADD += glib_probes.lo
endif
if ENABLE_SYSTEMTAP
tapset_in_files = glib.stp.in
tapsetdir = @ABS_TAPSET_DIR@
tapset_DATA = $(tapset_in_files:.stp.in=.stp)
EXTRA_DIST += $(tapset_in_files)
if ENABLE_SYSTEMTAP
tapset_DATA = $(tapset_in_files:.stp.in=.stp)
CLEANFILES += $(tapset_in_files:.stp.in=.stp)
$(tapset_DATA): %.stp: %.stp.in Makefile