From d753228cec93987d9e7025638b20122c387e7877 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 6 Nov 2009 12:30:20 +0000 Subject: [PATCH] Ignore failure of rmdir -- this used to work, but now the directory it's trying to remove is not there, and since I don't understand what it was meant to be there for in the first place I am just going to let is slide. --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 0fc28d6..7c09fb8 100755 --- a/debian/rules +++ b/debian/rules @@ -51,7 +51,7 @@ install-stamp: # As this is a architecture independent package, we are not # supposed to install stuff to /usr/lib. MakeMaker creates # the dirs, we delete them from the deb: - rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 || : touch install-stamp -- 1.7.10.4