1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From ac52ee6d3e51a35ca6ffbc41a7f1a77044368a14 Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@debian.org>
Date: Thu, 17 Aug 2023 01:02:35 +0100
Subject: Don't remove inc directory in "make realclean"
This is part of the source package, so cleaning it means that a second
consecutive build in the same tree fails.
Bug-Debian: https://bugs.debian.org/1049731
Last-Update: 2023-08-17
Patch-Name: realclean-preserve-inc.patch
---
Makefile.PL | 2 --
1 file changed, 2 deletions(-)
diff --git a/Makefile.PL b/Makefile.PL
index fbe9220..898f06a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -41,8 +41,6 @@ no_index 'directory' => 'private-lib';
enable_verbose_cpan_testing();
-realclean_files('inc');
-
WriteAll;
# ---- Workaround for broken module ----
|