Skip to content
Snippets Groups Projects
Commit 2b8a6dc4 authored by Dylan Aïssi's avatar Dylan Aïssi
Browse files

Use CURDIR instead of PWD in debian/rules

The PWD variable is not set by GNU make and therefore will have whatever
value it has in the environment, which may not be the actual current directory.

See: https://lintian.debian.org/tags/debian-rules-calls-pwd



Signed-off-by: default avatarDylan Aïssi <dylan.aissi@collabora.com>
parent 29652571
No related branches found
No related tags found
1 merge request!93Fix lintian issues
......@@ -25,4 +25,4 @@ override_dh_auto_build:
ninja -v -C ${BUILDDIR}
override_dh_auto_install:
DESTDIR=${PWD}/debian/apertis-update-manager ninja install -v -C ${BUILDDIR}
DESTDIR=${CURDIR}/debian/apertis-update-manager ninja install -v -C ${BUILDDIR}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment