From: Arun Raghavan Date: Sun, 5 Dec 2010 10:38:32 +0000 (+0530) Subject: build-sys: Fix a warning during distcheck X-Git-Tag: v0.99.1~326 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de706d9cf74a4bc95b033afb55181559178a07f3;p=platform%2Fupstream%2Fpulseaudio.git build-sys: Fix a warning during distcheck This adds a dummy Makefile.am to the dbus module to eliminate missing directory warnings during distcheck. --- diff --git a/configure.ac b/configure.ac index c858689..5216c01 100644 --- a/configure.ac +++ b/configure.ac @@ -1485,6 +1485,7 @@ src/modules/alsa/mixer/Makefile src/modules/alsa/mixer/paths/Makefile src/modules/alsa/mixer/profile-sets/Makefile src/modules/bluetooth/Makefile +src/modules/dbus/Makefile src/modules/gconf/Makefile src/modules/jack/Makefile src/modules/oss/Makefile diff --git a/src/modules/Makefile.am b/src/modules/Makefile.am index e99451d..d8dc152 100644 --- a/src/modules/Makefile.am +++ b/src/modules/Makefile.am @@ -17,4 +17,4 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA. -SUBDIRS = alsa bluetooth gconf jack oss raop rtp x11 +SUBDIRS = alsa bluetooth dbus gconf jack oss raop rtp x11 diff --git a/src/modules/dbus/Makefile.am b/src/modules/dbus/Makefile.am new file mode 100644 index 0000000..d04a413 --- /dev/null +++ b/src/modules/dbus/Makefile.am @@ -0,0 +1,20 @@ +# This file is part of PulseAudio. +# +# Copyright 2010 Colin Guthrie +# +# PulseAudio is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# PulseAudio is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with PulseAudio; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA. + +# This Automake file is intentionally blank.