diff options
author | Ray Strode <rstrode@redhat.com> | 2011-08-30 13:15:18 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2011-08-30 14:03:47 -0400 |
commit | 1c36b1d21fc2c91944656b8713ff5be8da38433f (patch) | |
tree | 301c4109f8733f065ecb9cf14889fbc8ea0f284d | |
parent | 67f2afb076246c7d951701c4220441be0a1a6960 (diff) | |
download | gdm-1c36b1d21fc2c91944656b8713ff5be8da38433f.tar.gz |
data: don't delete non-generated files during clean
This commit removes two files from the CLEAN_FILES list
that are checked into version control.
-rw-r--r-- | data/applications/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/applications/Makefile.am b/data/applications/Makefile.am index 339e12b6..8838d2bd 100644 --- a/data/applications/Makefile.am +++ b/data/applications/Makefile.am @@ -27,10 +27,11 @@ desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) \ EXTRA_DIST = \ gdm-simple-greeter.desktop.in.in \ $(desktop_in_files) \ + $(desktop_DATA) \ $(NULL) DISTCLEANFILES = \ - $(desktop_DATA) \ + $(desktop_in_files:.desktop.in=.desktop) \ gdm-simple-greeter.desktop.in \ $(NULL) |