mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-26 19:10:08 +01:00
build: Don't distribute versioninfo.rc in "make dist" tarballs
It's generated by configure, so we should not distribute it. Because it's generated by configure, it is automatically cleaned up by "make distclean" via $(CONFIG_CLEAN_FILES). Signed-off-by: Simon McVittie <smcv@collabora.com> Reviewed-by: Philip Withnall <withnall@endlessm.com> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=103420
This commit is contained in:
parent
dd89b359f0
commit
bfee8772bf
1 changed files with 7 additions and 1 deletions
|
|
@ -37,6 +37,9 @@ dbusarchincludedir=$(libdir)/dbus-1.0/include/dbus
|
|||
|
||||
lib_LTLIBRARIES=libdbus-1.la
|
||||
|
||||
# Initialize to empty so that we can append later
|
||||
nodist_libdbus_1_la_SOURCES =
|
||||
|
||||
#
|
||||
# Deal with W32 .def and version-info.rc stuff
|
||||
#
|
||||
|
|
@ -57,7 +60,10 @@ if DBUS_WIN
|
|||
DBUS_LIB_arch_sources = \
|
||||
dbus-server-win.c \
|
||||
dbus-server-win.h \
|
||||
versioninfo.rc \
|
||||
$(NULL)
|
||||
|
||||
nodist_libdbus_1_la_SOURCES += \
|
||||
versioninfo.rc \
|
||||
$(NULL)
|
||||
|
||||
if DBUS_WINCE
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue