diff contrib/packaging/builddeb @ 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 212a52d8e9d8
children 4caf88845082
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