# HG changeset patch # User Denis Laxalde # Date 2019-10-21 09:32:54 # 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 --git a/contrib/packaging/builddeb b/contrib/packaging/builddeb --- a/contrib/packaging/builddeb +++ b/contrib/packaging/builddeb @@ -111,5 +111,5 @@ if [ "$CLEANUP" ] ; then -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