diff options
author | Dan Williams <dcbw@redhat.com> | 2013-07-11 09:07:12 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2013-07-11 09:07:12 -0500 |
commit | f3d9c35e9b60265cc19f5a9468425b057627686e (patch) | |
tree | 744a5f9cdbb9e7829e414459dfb7132f7f279aa0 | |
parent | 0b2e04ed149717a60ec2e399a2d4e1c6f3200cd9 (diff) |
build: fix multiply defined EXTRA_DIST
plugins/Makefile.am:375: warning: EXTRA_DIST multiply defined in condition TRUE ...
gtester.make:6: ... 'EXTRA_DIST' previously defined here
plugins/Makefile.am:1: 'gtester.make' included from here
-rw-r--r-- | plugins/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 4015e5fc..83f1fae2 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -372,7 +372,7 @@ libmm_plugin_telit_la_LDFLAGS = $(PLUGIN_COMMON_LINKER_FLAGS) # Additional files to include in the distribution -EXTRA_DIST = \ +EXTRA_DIST += \ $(udevrules_DATA) # Unit tests |