Mercurial > hg-stable
changeset 43312:734407c4568a stable
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".
author | Denis Laxalde <denis@laxalde.org> |
---|---|
date | Mon, 21 Oct 2019 11:32:54 +0200 |
parents | 88928063addb |
children | a882c088dc2e |
files | contrib/packaging/builddeb |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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