]> git.proxmox.com Git - zfsonlinux.git/blob - zfs-patches/0010-Fix-bug-in-distclean-which-removes-needed-files.patch
buildsys: upload to pmg as well
[zfsonlinux.git] / zfs-patches / 0010-Fix-bug-in-distclean-which-removes-needed-files.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: David Quigley <dpquigl@users.noreply.github.com>
3 Date: Wed, 13 Sep 2017 12:45:04 -0600
4 Subject: [PATCH] Fix bug in distclean which removes needed files
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 Running distclean removes the following files because of an error
10 in Makefile.am
11
12 deleted: tests/zfs-tests/include/commands.cfg
13 deleted: tests/zfs-tests/include/libtest.shlib
14 deleted: tests/zfs-tests/include/math.shlib
15 deleted: tests/zfs-tests/include/properties.shlib
16 deleted: tests/zfs-tests/include/zpool_script.shlib
17
18 Reviewed-by: George Melikov <mail@gmelikov.ru>
19 Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
20 Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
21 Signed-off-by: David Quigley <david.quigley@intel.com>
22 Closes #6636
23 (cherry picked from commit 53e5890cff8b7c21d34e1142ae717ae79af54da6)
24 Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
25 ---
26 tests/zfs-tests/include/Makefile.am | 2 +-
27 1 file changed, 1 insertion(+), 1 deletion(-)
28
29 diff --git a/tests/zfs-tests/include/Makefile.am b/tests/zfs-tests/include/Makefile.am
30 index 579e1356e..24633ccc3 100644
31 --- a/tests/zfs-tests/include/Makefile.am
32 +++ b/tests/zfs-tests/include/Makefile.am
33 @@ -10,4 +10,4 @@ dist_pkgdata_SCRIPTS = \
34 EXTRA_DIST=default.cfg.in
35
36 distclean-local::
37 - -$(RM) $(dist_pkgdata_SCRIPTS)
38 + -$(RM) default.cfg
39 --
40 2.14.2
41