Skip to content
Snippets Groups Projects

distro/pkg/deb: use $(shell pwd) to fix LaunchPad fails

Merged Jakub Ružička requested to merge launchpad-fix into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -41,7 +41,7 @@ override_dh_auto_build:
dh_auto_build --buildsystem=pybuild --sourcedirectory manager
override_dh_auto_install:
DESTDIR="${PWD}/debian/tmp" ninja -v -C build_deb install
DESTDIR="$(shell pwd)/debian/tmp" ninja -v -C build_deb install
PYBUILD_NAME=knot_resolver PYBUILD_DESTDIR="$${PYKRES_DESTDIR}" \
dh_auto_install --buildsystem=pybuild --sourcedirectory build_deb/python
PYBUILD_NAME=knot_resolver_manager PYBUILD_DESTDIR="$${PYKRES_DESTDIR}" \
Loading