build-sys: fix distribution of GSettings files
authorTanu Kaskinen <tanuk@iki.fi>
Fri, 11 May 2018 11:06:21 +0000 (14:06 +0300)
committerTanu Kaskinen <tanuk@iki.fi>
Fri, 11 May 2018 11:28:14 +0000 (14:28 +0300)
dist_gsettingsdataconvert_DATA was set only if GSettings was enabled. If
the developer that generates the tarball doesn't have GSettings enabled,
pulseaudio.convert wouldn't get included in the tarball.

The schema file was not being added to the tarball even if GSettings was
enabled.

src/Makefile.am

index 8ef9eb2..e77624f 100644 (file)
@@ -109,7 +109,9 @@ EXTRA_DIST = \
                daemon/pulseaudio.desktop.in \
                map-file \
                daemon/pulseaudio-system.conf \
-               modules/echo-cancel/adrian-license.txt
+               modules/echo-cancel/adrian-license.txt \
+               modules/gsettings/org.freedesktop.pulseaudio.gschema.xml \
+               modules/gsettings/pulseaudio.convert
 
 pulseconf_DATA = \
                default.pa \
@@ -1422,7 +1424,7 @@ modlibexec_LTLIBRARIES += \
 pulselibexec_PROGRAMS += \
                gsettings-helper
 
-dist_gsettingsdataconvert_DATA = \
+gsettingsdataconvert_DATA = \
                modules/gsettings/pulseaudio.convert
 endif