From 87590bc10b52efc48a3488446e43a56fb41b2a39 Mon Sep 17 00:00:00 2001 From: Michal Maruska Date: Wed, 11 Dec 2019 18:39:09 +0100 Subject: [PATCH] mk-build-deps.pl search for the generated .deb file in TMPDIR That is where equivs-build creates it. --- scripts/mk-build-deps.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/mk-build-deps.pl b/scripts/mk-build-deps.pl index 700575a8..6ae3e971 100755 --- a/scripts/mk-build-deps.pl +++ b/scripts/mk-build-deps.pl @@ -575,6 +575,7 @@ sub build_equiv { my $deb_file = "${pkgname}_${version}_${packagearch}.deb"; return { package => $pkgname, - deb_file => $deb_file + # this is created by equivs-build in TMPDIR || ! + deb_file => ($ENV{'TMPDIR'} || cwd) . "/" . $deb_file }; }