summaryrefslogtreecommitdiff
path: root/clutter-gst
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2009-06-13 23:30:49 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2009-06-13 23:30:49 +0100
commit52124cb46296093b9e9eea9acab4cf9365b7718c (patch)
treea449642e5269ecee9f6e68a2136785d024179a82 /clutter-gst
parent7bcfaa6946d56a4d635ea3cd7455915435f20d5c (diff)
downloadclutter-gst-52124cb46296093b9e9eea9acab4cf9365b7718c.tar.gz
Fix automake warning on CLEANFILES
CLEANFILES is already defined, append the needed files.
Diffstat (limited to 'clutter-gst')
-rw-r--r--clutter-gst/shaders/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/clutter-gst/shaders/Makefile.am b/clutter-gst/shaders/Makefile.am
index 0d18b15..8ec1e98 100644
--- a/clutter-gst/shaders/Makefile.am
+++ b/clutter-gst/shaders/Makefile.am
@@ -18,9 +18,9 @@ BUILT_SOURCES = I420.h \
YV12.h \
$(NULL)
-CLEANFILES = I420.h \
- YV12.h \
- $(NULL)
+CLEANFILES += I420.h \
+ YV12.h \
+ $(NULL)
# Don't use GNU make extension to avoid automake warnings, yeah I know, that's
# annoying.