diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-05-19 03:42:06 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-05-19 03:42:06 +0800 |
commit | a8c21b82947b1e4568670bc880e83a52a0741e7c (patch) | |
tree | d24645b23a3e53301f1a619676d2966a34b9f1ed | |
parent | ea50f388412c9c4d880bea7aa770d079b8c9141c (diff) | |
download | gsoc2013-epiphany-a8c21b82947b1e4568670bc880e83a52a0741e7c.tar.gz gsoc2013-epiphany-a8c21b82947b1e4568670bc880e83a52a0741e7c.tar.zst gsoc2013-epiphany-a8c21b82947b1e4568670bc880e83a52a0741e7c.zip |
Fix uninstallation
2003-05-18 Marco Pesenti Gritti <marco@it.gnome.org>
* Makefile.am:
* data/Makefile.am:
* data/starthere/Makefile.am:
Fix uninstallation
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | Makefile.am | 9 | ||||
-rw-r--r-- | data/Makefile.am | 3 | ||||
-rw-r--r-- | data/starthere/Makefile.am | 1 |
4 files changed, 19 insertions, 2 deletions
@@ -1,5 +1,13 @@ 2003-05-18 Marco Pesenti Gritti <marco@it.gnome.org> + * Makefile.am: + * data/Makefile.am: + * data/starthere/Makefile.am: + + Fix uninstallation + +2003-05-18 Marco Pesenti Gritti <marco@it.gnome.org> + * NEWS: * configure.in: diff --git a/Makefile.am b/Makefile.am index aa01b0157..7107e68ec 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,10 @@ SUBDIRS = lib embed src data po help +distcleancheck_listfiles = find . -type f -print | grep -v 'omf\.out' + +distuninstallcheck_listfiles = find . -type f -print | grep -v '^\./var/scrollkeeper' | grep -v 'omf' | grep -v 'figures' + EXTRA_DIST = \ intltool-merge.in \ intltool-update.in \ @@ -9,3 +13,8 @@ EXTRA_DIST = \ xmldocs.make \ omf.make \ COPYING.README + +DISTCLEANFILES = \ + intltool-extract \ + intltool-merge \ + intltool-update diff --git a/data/Makefile.am b/data/Makefile.am index 930f9e435..7554501ea 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -31,11 +31,10 @@ install-data-local: done \ fi -CLEANFILES = $(server_DATA) $(Applications_DATA) $(schema_DATA) - EXTRA_DIST = $(server_in_files) \ $(schema_in_files) \ $(DESKTOP_IN_FILES) \ $(about_DATA) \ $(applications_DATA) +DISTCLEANFILES = $(server_DATA) $(Applications_DATA) $(schema_DATA) $(DESKTOP_FILES) diff --git a/data/starthere/Makefile.am b/data/starthere/Makefile.am index d6ad77fed..8aadf129d 100644 --- a/data/starthere/Makefile.am +++ b/data/starthere/Makefile.am @@ -11,3 +11,4 @@ EXTRA_DIST = $(xml_DATA) \ $(xml_in_files) \ $(page_DATA) +DISTCLEANFILES = $(xml_DATA) |