Skip to content
Snippets Groups Projects
Commit 0a062247 authored by Guido Günther's avatar Guido Günther
Browse files

Move directory creation

form dh_auto_build to dh_auto_install since this isn't part of
the building but the installing process.
parent 5177ab34
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,11 @@ override_dh_auto_configure:
override_dh_auto_install:
dh_auto_install
DEB_BUILDDIR=$(DEB_BUILDDIR) make -f debian/python.mk install
# Add empty dirs so dh_install doesn't fail on kFreebsd until we have
# Polkit/Systemd/systemtap support
mkdir -p debian/tmp/usr/share/polkit-1 \
debian/tmp/lib/systemd/system \
debian/tmp/usr/share/systemtap
override_dh_auto_test:
export LD_PRELOAD=""; \
......@@ -154,11 +159,6 @@ override_dh_strip:
override_dh_auto_build:
dh_auto_build -a -i
DEB_BUILDDIR=$(DEB_BUILDDIR) make -f debian/python.mk build
# Add empty dirs so dh_install doesn't fail on kFreebsd until we have
# Polkit/Systemd support
mkdir -p debian/tmp/usr/share/polkit-1 \
debian/tmp/lib/systemd/system \
debian/tmp/usr/share/systemtap
override_dh_auto_clean:
[ ! -f Makefile ] || dh_auto_clean
......
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