diff options
author | Jim Meyering <jim@meyering.net> | 2009-04-30 15:55:58 +0200 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-30 16:13:06 +0100 |
commit | 41b959fd9b057354f642d84398b875d02b88b864 (patch) | |
tree | 6145563f2eef6ae5c3a5f74426a9cb644a556520 /Makefile.am | |
parent | 5e62afd7ce5145eee1894fab6f0722119fee1d31 (diff) | |
download | libguestfs-41b959fd9b057354f642d84398b875d02b88b864.tar.gz libguestfs-41b959fd9b057354f642d84398b875d02b88b864.tar.xz libguestfs-41b959fd9b057354f642d84398b875d02b88b864.zip |
build: don't tell "make clean" to remove my '~' backup files
Hi Rich,
automake's policy on what to remove via "make clean" is reasonable:
if running build rules creates it, then "make clean" can and should remove it.
However, even if build rules happen
to create backup files, please remove only the specific ones
they can create, not all of the ones in a directory. Just in case
someone relies on those and expect them to hang around...
>From 1e8be391ac17b4ddcf9671e8413d2660844e6993 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering@redhat.com>
Date: Thu, 30 Apr 2009 15:47:52 +0200
Subject: [PATCH] build: don't tell "make clean" to remove my '~' backup files
* Makefile.am (CLEANFILES): Don't remove '~' backup files.
* daemon/Makefile.am: Ditto.
* examples/Makefile.am: Ditto.
* fish/Makefile.am: Ditto.
* images/Makefile.am: Ditto.
* inspector/Makefile.am: Ditto.
* java/Makefile.am: Ditto.
* ocaml/Makefile.am: Ditto.
* ocaml/examples/Makefile.am: Ditto.
* perl/Makefile.am: Ditto.
* python/Makefile.am: Ditto.
* ruby/Makefile.am: Ditto.
* src/Makefile.am: Ditto.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 47ef6d0c..f2f26e70 100644 --- a/Makefile.am +++ b/Makefile.am @@ -201,7 +201,7 @@ test-boot-realistic: emptydisk # Make clean. -CLEANFILES = $(fs_DATA) emptydisk pod2htm?.tmp *~ html/*~ recipes/*~ +CLEANFILES = $(fs_DATA) emptydisk pod2htm?.tmp clean-local: rm -rf initramfs |