# HG changeset patch # User Denis Laxalde # Date 1571650374 -7200 # Node ID 734407c4568a455604bf3430f2d717e6d7761a5f # Parent 88928063addb816582be1328d5ae0569f21f279a packaging: fix path where .deb files are looked for In builddeb script, the path where .deb files are looked for should simply be $OUTPUTDIR since the previous instruction moves those files there. This fixes "make deb". diff -r 88928063addb -r 734407c4568a contrib/packaging/builddeb --- a/contrib/packaging/builddeb Mon Oct 21 09:52:31 2019 +0200 +++ b/contrib/packaging/builddeb Mon Oct 21 11:32:54 2019 +0200 @@ -111,5 +111,5 @@ -type f -newer $control -print0 2>/dev/null | \ xargs -Inarf -0 mv narf "$OUTPUTDIR" echo "Built packages for $debver:" - find "$PWD"/"$OUTPUTDIR" -type f -newer $control -name '*.deb' + find "$OUTPUTDIR" -type f -newer $control -name '*.deb' fi