mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
build: Stop distributing generated files in autotools tarballs
It is a bug if we distribute files which are generated at build time — they should be built on the machine which is compiling GLib, not be shipped in the tarball. This brings the autotools-generated tarball in line with the ninja-generated one, with the exception of man pages and gtk-doc HTML output. Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
parent
47dcbd318f
commit
2a69cdb1cd
@ -288,6 +288,9 @@ unix_sources = \
|
|||||||
gportalsupport.h \
|
gportalsupport.h \
|
||||||
$(portal_sources) \
|
$(portal_sources) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
nodist_unix_sources = \
|
||||||
|
$(nodist_portal_sources) \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
giounixincludedir=$(includedir)/gio-unix-2.0/gio
|
giounixincludedir=$(includedir)/gio-unix-2.0/gio
|
||||||
giounixinclude_HEADERS = \
|
giounixinclude_HEADERS = \
|
||||||
@ -316,6 +319,8 @@ endif
|
|||||||
gdbus_daemon_sources = \
|
gdbus_daemon_sources = \
|
||||||
gdbusdaemon.c \
|
gdbusdaemon.c \
|
||||||
gdbusdaemon.h \
|
gdbusdaemon.h \
|
||||||
|
$(NULL)
|
||||||
|
nodist_gdbus_daemon_sources = \
|
||||||
gdbus-daemon-generated.c \
|
gdbus-daemon-generated.c \
|
||||||
gdbus-daemon-generated.h \
|
gdbus-daemon-generated.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
@ -336,6 +341,9 @@ win32_actual_sources = \
|
|||||||
gwin32networkmonitor.h \
|
gwin32networkmonitor.h \
|
||||||
gwin32notificationbackend.c \
|
gwin32notificationbackend.c \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
nodist_win32_actual_sources = \
|
||||||
|
$(nodist_gdbus_daemon_sources) \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
win32_more_sources_for_vcproj = \
|
win32_more_sources_for_vcproj = \
|
||||||
gwin32appinfo.c \
|
gwin32appinfo.c \
|
||||||
@ -353,6 +361,7 @@ appinfo_sources += gwin32appinfo.c gwin32appinfo.h
|
|||||||
contenttype_sources += gcontenttype-win32.c
|
contenttype_sources += gcontenttype-win32.c
|
||||||
platform_libadd += -lshlwapi -lws2_32 -ldnsapi -liphlpapi
|
platform_libadd += -lshlwapi -lws2_32 -ldnsapi -liphlpapi
|
||||||
win32_sources = $(win32_actual_sources)
|
win32_sources = $(win32_actual_sources)
|
||||||
|
nodist_win32_sources = $(nodist_win32_actual_sources)
|
||||||
|
|
||||||
giowin32includedir=$(includedir)/gio-win32-2.0/gio
|
giowin32includedir=$(includedir)/gio-win32-2.0/gio
|
||||||
giowin32include_HEADERS = \
|
giowin32include_HEADERS = \
|
||||||
@ -392,7 +401,9 @@ portal_sources = \
|
|||||||
gnetworkmonitorportal.h \
|
gnetworkmonitorportal.h \
|
||||||
gproxyresolverportal.c \
|
gproxyresolverportal.c \
|
||||||
gproxyresolverportal.h \
|
gproxyresolverportal.h \
|
||||||
$(xdp_dbus_built_sources) \
|
$(NULL)
|
||||||
|
nodist_portal_sources = \
|
||||||
|
$(xdp_dbus_built_sources) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
if OS_UNIX
|
if OS_UNIX
|
||||||
@ -546,14 +557,16 @@ gio_base_sources = \
|
|||||||
gzlibcompressor.c \
|
gzlibcompressor.c \
|
||||||
gzlibdecompressor.c \
|
gzlibdecompressor.c \
|
||||||
gmountprivate.h \
|
gmountprivate.h \
|
||||||
gioenumtypes.h \
|
|
||||||
gioenumtypes.c \
|
|
||||||
glistmodel.c \
|
glistmodel.c \
|
||||||
gliststore.c \
|
gliststore.c \
|
||||||
$(application_sources) \
|
$(application_sources) \
|
||||||
$(gdbus_sources) \
|
$(gdbus_sources) \
|
||||||
$(local_sources) \
|
$(local_sources) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
nodist_gio_base_sources = \
|
||||||
|
gioenumtypes.h \
|
||||||
|
gioenumtypes.c \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
libgio_2_0_la_SOURCES = \
|
libgio_2_0_la_SOURCES = \
|
||||||
$(gio_base_sources) \
|
$(gio_base_sources) \
|
||||||
@ -563,6 +576,11 @@ libgio_2_0_la_SOURCES = \
|
|||||||
$(win32_sources) \
|
$(win32_sources) \
|
||||||
$(settings_sources) \
|
$(settings_sources) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
nodist_libgio_2_0_la_SOURCES = \
|
||||||
|
$(nodist_gio_base_sources) \
|
||||||
|
$(nodist_unix_sources) \
|
||||||
|
$(nodist_win32_sources) \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
EXTRA_DIST += strinfo.c
|
EXTRA_DIST += strinfo.c
|
||||||
|
|
||||||
@ -762,8 +780,11 @@ gio_headers = \
|
|||||||
|
|
||||||
gioincludedir=$(includedir)/glib-2.0/gio/
|
gioincludedir=$(includedir)/glib-2.0/gio/
|
||||||
gioinclude_HEADERS = \
|
gioinclude_HEADERS = \
|
||||||
$(gio_headers) \
|
$(gio_headers) \
|
||||||
gioenumtypes.h
|
$(NULL)
|
||||||
|
nodist_gioinclude_HEADERS = \
|
||||||
|
gioenumtypes.h \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
nodist_gioinclude_HEADERS = \
|
nodist_gioinclude_HEADERS = \
|
||||||
gnetworking.h \
|
gnetworking.h \
|
||||||
@ -785,7 +806,6 @@ EXTRA_DIST += \
|
|||||||
gioenumtypes.c.template \
|
gioenumtypes.c.template \
|
||||||
gio.rc.in \
|
gio.rc.in \
|
||||||
gschema.dtd \
|
gschema.dtd \
|
||||||
gconstructor_as_data.h \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
BUILT_EXTRA_DIST += \
|
BUILT_EXTRA_DIST += \
|
||||||
@ -846,11 +866,13 @@ gconstructor_as_data.h: $(top_srcdir)/glib/gconstructor.h data-to-c.py
|
|||||||
|
|
||||||
glib_compile_schemas_LDADD = $(top_builddir)/glib/libglib-2.0.la
|
glib_compile_schemas_LDADD = $(top_builddir)/glib/libglib-2.0.la
|
||||||
glib_compile_schemas_SOURCES = \
|
glib_compile_schemas_SOURCES = \
|
||||||
gconstructor_as_data.h \
|
|
||||||
gvdb/gvdb-format.h \
|
gvdb/gvdb-format.h \
|
||||||
gvdb/gvdb-builder.h \
|
gvdb/gvdb-builder.h \
|
||||||
gvdb/gvdb-builder.c \
|
gvdb/gvdb-builder.c \
|
||||||
glib-compile-schemas.c
|
glib-compile-schemas.c
|
||||||
|
nodist_glib_compile_schemas_SOURCES = \
|
||||||
|
gconstructor_as_data.h \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
gsettings_LDADD = libgio-2.0.la \
|
gsettings_LDADD = libgio-2.0.la \
|
||||||
$(top_builddir)/gobject/libgobject-2.0.la \
|
$(top_builddir)/gobject/libgobject-2.0.la \
|
||||||
|
@ -557,7 +557,8 @@ nodist_resources_SOURCES = test_resources.c test_resources2.c test_resources2.h
|
|||||||
resources_DEPENDENCIES = test.gresource
|
resources_DEPENDENCIES = test.gresource
|
||||||
|
|
||||||
test_ltlibraries += libresourceplugin.la
|
test_ltlibraries += libresourceplugin.la
|
||||||
libresourceplugin_la_SOURCES = resourceplugin.c plugin_resources.c
|
libresourceplugin_la_SOURCES = resourceplugin.c
|
||||||
|
nodist_libresourceplugin_la_SOURCES = plugin_resources.c
|
||||||
libresourceplugin_la_LDFLAGS = -avoid-version -module -export-dynamic $(no_undefined)
|
libresourceplugin_la_LDFLAGS = -avoid-version -module -export-dynamic $(no_undefined)
|
||||||
libresourceplugin_la_LIBADD = $(LDADD)
|
libresourceplugin_la_LIBADD = $(LDADD)
|
||||||
|
|
||||||
|
@ -410,15 +410,26 @@ gspawn-win64-helper-console.c:
|
|||||||
echo '#define HELPER_CONSOLE' >$@
|
echo '#define HELPER_CONSOLE' >$@
|
||||||
echo '#include "gspawn-win32-helper.c"' >>$@
|
echo '#include "gspawn-win32-helper.c"' >>$@
|
||||||
|
|
||||||
|
nodist_win_helper_sources = \
|
||||||
|
gspawn-win32-helper-console.c \
|
||||||
|
gspawn-win64-helper.c \
|
||||||
|
gspawn-win64-helper-console.c \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
BUILT_SOURCES += $(nodist_win_helper_sources)
|
||||||
|
CLEANFILES += $(nodist_win_helper_sources)
|
||||||
|
|
||||||
if OS_WIN32
|
if OS_WIN32
|
||||||
if OS_WIN32_X64
|
if OS_WIN32_X64
|
||||||
bin_PROGRAMS += gspawn-win64-helper gspawn-win64-helper-console
|
bin_PROGRAMS += gspawn-win64-helper gspawn-win64-helper-console
|
||||||
|
nodist_gspawn_win64_helper_SOURCES = gspawn-win64-helper.c
|
||||||
|
nodist_gspawn_win64_helper_console_SOURCES = gspawn-win64-helper-console.c
|
||||||
gspawn_win64_helper_LDADD = libglib-2.0.la
|
gspawn_win64_helper_LDADD = libglib-2.0.la
|
||||||
gspawn_win64_helper_LDFLAGS = -mwindows
|
gspawn_win64_helper_LDFLAGS = -mwindows
|
||||||
gspawn_win64_helper_console_LDADD = libglib-2.0.la
|
gspawn_win64_helper_console_LDADD = libglib-2.0.la
|
||||||
else
|
else
|
||||||
bin_PROGRAMS += gspawn-win32-helper gspawn-win32-helper-console
|
bin_PROGRAMS += gspawn-win32-helper gspawn-win32-helper-console
|
||||||
|
nodist_gspawn_win32_helper_console_SOURCES = gspawn-win32-helper-console.c
|
||||||
gspawn_win32_helper_LDADD = libglib-2.0.la
|
gspawn_win32_helper_LDADD = libglib-2.0.la
|
||||||
gspawn_win32_helper_LDFLAGS = -mwindows
|
gspawn_win32_helper_LDFLAGS = -mwindows
|
||||||
gspawn_win32_helper_console_LDADD = libglib-2.0.la
|
gspawn_win32_helper_console_LDADD = libglib-2.0.la
|
||||||
|
@ -40,7 +40,8 @@ AM_TESTS_ENVIRONMENT = \
|
|||||||
MALLOC_CHECK_=2 \
|
MALLOC_CHECK_=2 \
|
||||||
MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
|
MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
|
||||||
|
|
||||||
accumulator_SOURCES = accumulator.c testmarshal.c testmarshal.h
|
accumulator_SOURCES = accumulator.c
|
||||||
|
nodist_accumulator_SOURCES = testmarshal.c testmarshal.h
|
||||||
signals_SOURCES = signals.c
|
signals_SOURCES = signals.c
|
||||||
defaultiface_SOURCES = defaultiface.c testmodule.c testmodule.h
|
defaultiface_SOURCES = defaultiface.c testmodule.c testmodule.h
|
||||||
dynamictype_SOURCES = dynamictype.c testmodule.c testmodule.h
|
dynamictype_SOURCES = dynamictype.c testmodule.c testmodule.h
|
||||||
@ -68,18 +69,6 @@ testmarshal.c: testmarshal.h testmarshal.list $(glib_genmarshal)
|
|||||||
&& rm -f xgen-gmc xgen-gmc~
|
&& rm -f xgen-gmc xgen-gmc~
|
||||||
|
|
||||||
BUILT_SOURCES += testmarshal.h testmarshal.c
|
BUILT_SOURCES += testmarshal.h testmarshal.c
|
||||||
CLEANFILES += stamp-testmarshal.h
|
CLEANFILES += stamp-testmarshal.h testmarshal.h testmarshal.c
|
||||||
EXTRA_DIST += testcommon.h testmarshal.list
|
EXTRA_DIST += testcommon.h testmarshal.list
|
||||||
BUILT_EXTRA_DIST += testmarshal.h testmarshal.c
|
endif # !CROSS_COMPILING
|
||||||
endif # !CROSS_COMPILING
|
|
||||||
|
|
||||||
dist-hook: $(BUILT_EXTRA_DIST)
|
|
||||||
files='$(BUILT_EXTRA_DIST)'; \
|
|
||||||
for f in $$files; do \
|
|
||||||
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
|
||||||
cp $$d/$$f $(distdir) || exit 1; done
|
|
||||||
|
|
||||||
distclean-local:
|
|
||||||
if test $(srcdir) = .; then :; else \
|
|
||||||
rm -f $(BUILT_EXTRA_DIST); \
|
|
||||||
fi
|
|
Loading…
Reference in New Issue
Block a user